| .BasicButton { |
| box-sizing: border-box; |
| } |
| |
| .BasicButton > BUTTON { |
| font-family:"Arial"; |
| /*font-size:11px;*/ |
| font-weight: bold; |
| color: #333333; |
| cursor:pointer; |
| outline:none; |
| background-image: linear-gradient(to bottom, #FFFFFF, #e2e1e1); |
| text-align: center; |
| vertical-align: middle; |
| height: 25px; |
| overflow: hidden; |
| } |
| |
| .BasicButton > BUTTON:hover { |
| color: #58585a; |
| background-image: linear-gradient(to bottom,#e2e1e1, #FFFFFF); |
| } |
| |
| .BasicButton > BUTTON:disabled { |
| color: #999999; |
| background-color: #AAAAAA; |
| } |
| |
| .BasicButton > BUTTON SPAN { |
| display: inline-block; /* If you remove this, the SPAN that encloses the IMG will not be the same height. Which is most likely a problem. */ |
| } |
| |
| .BasicButton > BUTTON IMG { |
| height: 16px; |
| width: 16px; |
| vertical-align: middle; /* If you remove this, the IMG will be centered and the text will valign to baseline. */ |
| margin-right: 5px; /* Distance between image and text */ |
| } |
| |
| .BasicButton > BUTTON LABEL { |
| vertical-align: middle; |
| margin-right: 5px; |
| } |