mirror of https://github.com/apache/cloudstack.git
Use less intense colors for buttons
This commit is contained in:
parent
4d337ee016
commit
d5ad83eb06
|
|
@ -15,7 +15,7 @@
|
|||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
@mixin csui-button {
|
||||
@include linear-gradient(#fff, darken(#ccc, 30%));
|
||||
@include linear-gradient(#fff, #ccc);
|
||||
|
||||
display: block;
|
||||
padding-top: 8px;
|
||||
|
|
@ -23,14 +23,15 @@
|
|||
padding-left: 12px;
|
||||
padding-right: 12px;
|
||||
min-width: 92px;
|
||||
font-size: 12px;
|
||||
font-size: 11px;
|
||||
border-radius: 3px;
|
||||
border: 1px solid black;
|
||||
border: 1px solid #999999;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
|
||||
&:hover {
|
||||
box-shadow: inset 0 0 10px black;
|
||||
box-shadow: inset 0 0 10px #ccc;
|
||||
@include linear-gradient(#fff, darken(#fff, 5%));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -54,6 +55,10 @@
|
|||
color: white;
|
||||
font-weight: bold;
|
||||
text-shadow: 0px 1px 1px black;
|
||||
|
||||
&:hover {
|
||||
background: #2e2e2e;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin csui-button-refresh {
|
||||
|
|
|
|||
Loading…
Reference in New Issue