mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
bc916a2530
Summary: Add docs for new RetinaImg modes Test Plan: Not much to test, except that it looks good! Reviewers: evan Reviewed By: evan Differential Revision: https://phab.nylas.com/D1595
128 lines
3.1 KiB
Text
128 lines
3.1 KiB
Text
@import "ui-variables";
|
|
@import "ui-mixins";
|
|
|
|
button, html input[type="button"] {
|
|
cursor: default;
|
|
&:hover, &:active {
|
|
cursor: default;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
border: 0;
|
|
padding: 0.33em 1em;
|
|
border-radius: @border-radius-base;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.21);
|
|
cursor: default;
|
|
display:inline-block;
|
|
|
|
height: auto;
|
|
line-height: 1;
|
|
|
|
&:active {
|
|
cursor: default;
|
|
background-color: darken(@btn-default-bg-color, 9%);
|
|
box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.21);
|
|
}
|
|
&:focus {
|
|
outline: none
|
|
}
|
|
|
|
font-size: @font-size-base;
|
|
&.btn-smaller {
|
|
font-size: @font-size-smaller;
|
|
}
|
|
&.btn-small {
|
|
font-size: @font-size-small;
|
|
}
|
|
&.btn-large {
|
|
font-size: @font-size-large;
|
|
padding: 0.5em 1.3em;
|
|
}
|
|
&.btn-larger {
|
|
font-size: @font-size-larger;
|
|
padding: 0.66em 1.6em;
|
|
}
|
|
|
|
color: @btn-default-text-color;
|
|
background: @btn-default-bg-color;
|
|
img.content-mask { background-color:@btn-default-text-color; }
|
|
|
|
&.btn-action {
|
|
color: @btn-action-text-color;
|
|
background: @btn-action-bg-color;
|
|
img.content-mask { background-color:@btn-action-text-color; }
|
|
}
|
|
|
|
&.btn-emphasis {
|
|
background-image: -webkit-gradient(linear, left top, left bottom, from(lighten(@btn-emphasis-bg-color,10%)), to(@btn-emphasis-bg-color));
|
|
border:1px solid darken(@btn-emphasis-bg-color, 5%);
|
|
color: @btn-emphasis-text-color;
|
|
font-weight: @font-weight-medium;
|
|
|
|
img.content-mask { background-color:@btn-emphasis-text-color; }
|
|
}
|
|
|
|
&.btn-emphasis:active {
|
|
background-image: -webkit-gradient(linear, left top, left bottom, from(darken(@btn-emphasis-bg-color,10%)), to(darken(@btn-emphasis-bg-color, 4%)));
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.21);
|
|
}
|
|
|
|
&.btn-danger, .btn-destructive {
|
|
color: @btn-danger-text-color;
|
|
background: @btn-danger-bg-color;
|
|
img.content-mask { background-color:@btn-danger-text-color; }
|
|
}
|
|
}
|
|
|
|
.btn-toolbar {
|
|
min-height:36px;
|
|
}
|
|
|
|
.btn-gradient {
|
|
background: -webkit-gradient(linear, left top, left bottom, from(@btn-default-bg-color), to(darken(@btn-default-bg-color, 4.5%)));
|
|
}
|
|
.btn-gradient:active {
|
|
background: -webkit-gradient(linear, left top, left bottom, from(darken(@btn-default-bg-color, 9%)), to(darken(@btn-default-bg-color, 13.5%)));
|
|
}
|
|
|
|
.btn-icon {
|
|
background: transparent;
|
|
border: 0;
|
|
box-shadow: none;
|
|
color: @text-color-subtle;
|
|
img.content-mask { background-color:@text-color-subtle; }
|
|
margin-right: 10px;
|
|
outline: none !important;
|
|
font-size: 20px;
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
&.inverse {
|
|
color: @text-color-inverse;
|
|
img.content-mask { background-color:@text-color-inverse; }
|
|
|
|
&:hover {
|
|
color: white;
|
|
}
|
|
|
|
&:active {
|
|
color: @text-color-inverse;
|
|
img.content-mask { background-color:@text-color-inverse; }
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
cursor: default;
|
|
color: @text-color-link;
|
|
img.content-mask { background-color:@text-color-link; }
|
|
box-shadow: none;
|
|
}
|
|
&:active {
|
|
color: @text-color-link-active;
|
|
img.content-mask { background-color:@text-color-link-active; }
|
|
box-shadow: none;
|
|
}
|
|
}
|