Rev 14709 | Rev 16137 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 14709 | Rev 15722 | ||
---|---|---|---|
Line 67... | Line 67... | ||
67 | /* "pressed button" style */ |
67 | /* "pressed button" style */ |
68 | input[type="submit"]:active, |
68 | input[type="submit"]:active, |
69 | .wims_button:active, |
69 | .wims_button:active, |
70 | .wims_button_help:active, |
70 | .wims_button_help:active, |
71 | .wims_tab:active { |
71 | .wims_tab:active { |
72 | top:1px; |
72 | top: 1px; |
73 | box-shadow: inset 1px 1px 2px rgba(0, 0, 0, .5); |
73 | box-shadow: inset 1px 1px 2px rgba(0, 0, 0, .5); |
74 | } |
74 | } |
75 | 75 | ||
76 | 76 | ||
77 | body.main_body .wims_secondary_button{ |
77 | body.main_body .wims_secondary_button{ |
78 | background-color: #EEE; |
78 | background-color: #EEE; |
79 | color:#000; |
79 | color: #000; |
80 | /*background-image: linear-gradient(to bottom, rgba(255,255,255,.1),rgba(255,255,255,.2));*/ |
80 | /*background-image: linear-gradient(to bottom, rgba(255,255,255,.1),rgba(255,255,255,.2));*/ |
81 | } |
81 | } |
82 | 82 | ||
83 | body.main_body .wims_button.wims_warning, |
83 | body.main_body .wims_button.wims_warning, |
84 | input[type="submit"].wims_warning, |
84 | input[type="submit"].wims_warning, |
85 | input[type="button"].wims_warning{ |
85 | input[type="button"].wims_warning{ |
86 | background-color |
86 | background-color: brown; |
87 | } |
87 | } |
88 | 88 | ||
89 | .wims_button.disabled, input[type="submit"].disabled{ |
89 | .wims_button.disabled, input[type="submit"].disabled{ |
90 | opacity: .4; |
90 | opacity: .4; |
91 | background-image:none; |
91 | background-image: none; |
92 | box-shadow: none; |
92 | box-shadow: none; |
93 | /*cursor: default;*/ |
93 | /*cursor: default;*/ |
94 | cursor:not-allowed; |
94 | cursor: not-allowed; |
95 | } |
95 | } |
96 | .wims_button.disabled:hover{ |
96 | .wims_button.disabled:hover{ |
97 | top:0; |
97 | top: 0; |
98 | box-shadow: none; |
98 | box-shadow: none; |
99 | } |
99 | } |
100 | 100 | ||
101 | .wims_button.inline{ |
101 | .wims_button.inline{ |
102 | padding: 0 .2em; |
102 | padding: 0 .2em; |
103 | line-height: 1.5em; |
103 | line-height: 1.5em; |
104 | } |
104 | } |
105 | - |