snappymail/dev/Styles/Ui.less

190 lines
2.4 KiB
Text
Raw Normal View History

.g-ui-user-select-none {
2015-04-07 03:32:19 +08:00
// webkit-touch-callout: none;
// user-select: none;
// standard-user-select: none;
// touch-callout: none;
}
.g-ui-link {
color: #336699;
text-decoration: underline;
cursor: pointer;
padding: 2px;
&:focus {
outline: 1px;
outline-style: dotted;
}
}
.g-ui-min-height-300 {
min-height: 300px;
}
.g-ui-absolute-reset {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 0;
margin: 0;
border: 0;
z-index: 0;
}
.g-ui-menu {
max-height: 400px;
max-width: 300px;
overflow-y: auto;
overflow-x: hidden;
.e-link {
text-decoration: none;
cursor: pointer;
}
.e-item.selected > .e-link {
background-color: #eee !important;
}
.e-item > .e-link:focus, .e-item > .e-link:hover {
background-color: #555;
background-image: none;
color: #fff;
}
.e-item.disabled > .e-link {
cursor: not-allowed;
background-color: #fff;
background-image: none;
color: grey;
}
.e-item.disabled [class^="icon-"] {
color: grey;
}
}
.g-ui-table {
display: table;
width: 100%;
.e-row {
display: table-row;
}
.e-cell {
display: table-cell;
vertical-align: top;
text-align: left;
}
}
2020-10-12 21:11:25 +08:00
.e-paginator {
.e-page {
display: inline-block;
color: #999;
text-decoration: none;
2014-06-26 02:47:04 +08:00
font-size: 22px;
padding: 3px;
cursor: pointer;
&:hover .e-page-number {
color: #555;
}
&.current .e-page-number {
2014-06-26 02:47:04 +08:00
font-size: 25px;
color: #333;
border-bottom: 2px solid #000;
}
}
}
.settings-saved-trigger {
display: inline-block;
height: 17px;
line-height: 17px;
font-size: 16px;
position: relative;
.animated {
color: #888;
}
.success {
color: #080;
}
.error {
color: #F00;
}
i {
transition: opacity 2s linear;
position: absolute;
}
i:not([hidden]) {
2014-08-28 23:27:30 +08:00
opacity: 1;
}
i[hidden] {
opacity: 0;
}
}
.settings-saved-trigger-input {
&.success {
border-color: green !important;
2014-08-28 23:27:30 +08:00
transition: border-color 0.5s linear;
}
&.error {
border-color: red !important;
2014-08-28 23:27:30 +08:00
transition: border-color 0.5s linear;
}
}
.e-mobile-switcher {
2014-10-22 01:49:42 +08:00
margin-top: 8px;
color: #333;
a {
color: #333;
text-decoration: underline;
&:hover {
color: #333;
}
}
}
.e-languages {
margin-top: 8px;
color: #333;
.flag-name {
color: #333;
border-bottom: 1px dashed #333;
cursor: pointer;
2020-09-12 19:57:09 +08:00
padding: 2px 0;
&:focus {
outline: 1px;
outline-style: dotted;
}
}
}
html.mobile .hide-mobile,
2015-01-25 03:09:10 +08:00
.command.command-disabled.hide-on-disabled-command {
display:none;
2015-04-14 02:45:09 +08:00
}