You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
876 lines
16 KiB
Plaintext
876 lines
16 KiB
Plaintext
8 years ago
|
@import (reference) "fontawesome.less";
|
||
|
@import (reference) "layout.less";
|
||
|
@import (reference) "colors.less";
|
||
|
|
||
8 years ago
|
/*** Responsive design - Layout ***/
|
||
|
|
||
|
/*
|
||
|
- Desktop - Big screen (width > 1200px)
|
||
|
-----------------------------------------------------------------------------------------------------
|
||
|
| menu | sidebar | list | content |
|
||
|
-----------------------------------------------------------------------------------------------------
|
||
|
- Desktop - Normal screen (1200px => width => 768px)
|
||
|
-------------------------------------------------------------------
|
||
|
|menu| sidebar/list | content |
|
||
|
-------------------------------------------------------------------
|
||
|
- Tablet (480px < width < 768px) - typical: 768x1024 (iPad Mini/Air)
|
||
|
------------------------------------------
|
||
|
|menu| sidebar/list/content |
|
||
|
------------------------------------------
|
||
|
- Phone (width <= 480px) - typical: 320x480 (iPhone 5), 375x667 (iPhone 6-7), 360x564 (Galaxy S6)
|
||
|
------------------------
|
||
|
| sidebar/list/content |
|
||
|
------------------------
|
||
|
|
||
|
NOTE: below 1024px we do some UI elements bigger, as this is good (imho)
|
||
8 years ago
|
assumption that in this size we're dealing with touch device. Is it?
|
||
8 years ago
|
should we rather feature detect tables/phones?
|
||
|
*/
|
||
|
|
||
8 years ago
|
body {
|
||
8 years ago
|
font-size: @page-font-size;
|
||
|
min-width: @page-min-width; /* overwrite semantic-ui's limit of 320px */
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
body > #layout {
|
||
|
overflow: hidden;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
flex-wrap: nowrap;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
body > #layout > div.menu {
|
||
|
width: 60px;
|
||
8 years ago
|
background-color: @taskmenu-background-color;
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
#layout > div.sidebar,
|
||
|
#layout > div.list {
|
||
8 years ago
|
display: flex;
|
||
|
flex-grow: 2;
|
||
|
flex-direction: column;
|
||
8 years ago
|
min-width: 300px;
|
||
8 years ago
|
max-width: 30%;
|
||
8 years ago
|
border-right: 1px solid @layout-border-color;
|
||
8 years ago
|
}
|
||
|
|
||
|
body > #layout > div.content {
|
||
|
display: flex;
|
||
8 years ago
|
flex-grow: 6;
|
||
8 years ago
|
flex-direction: column;
|
||
|
min-width: 50%;
|
||
|
}
|
||
|
|
||
8 years ago
|
body > #layout > div.sidebar {
|
||
|
min-width: 220px;
|
||
|
}
|
||
|
|
||
|
body > #layout > div.list {
|
||
|
min-width: 300px;
|
||
|
}
|
||
|
|
||
8 years ago
|
body > #layout > div.menu a,
|
||
|
body > #layout > div.menu a:before {
|
||
|
display: block;
|
||
|
width: 60px;
|
||
|
}
|
||
|
|
||
|
body:not(.iframe) > *:not(#layout),
|
||
|
body > #layout > div > .header > a.back-list-button,
|
||
|
body > #layout > div > .header > a.back-sidebar-button,
|
||
|
body > #layout > div > .header > .buttons,
|
||
8 years ago
|
body > #layout > div > .header > a.toolbar-menu-button,
|
||
8 years ago
|
body > #layout > div > .header > a.menu-button {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
8 years ago
|
#layout > div .toolbar {
|
||
|
float: right;
|
||
|
}
|
||
|
|
||
|
#layout > div.content > iframe,
|
||
|
#layout > div.content > .content,
|
||
|
#layout > div.content > .content > iframe {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
overflow: auto;
|
||
|
border: 0;
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
#layout > div > .scroller {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
#layout > .content.only > .scroller {
|
||
|
overflow: auto;
|
||
|
}
|
||
|
|
||
|
#layout > div > .header,
|
||
|
#layout > div > .footer {
|
||
8 years ago
|
background-color: @layout-header-background-color;
|
||
8 years ago
|
font-size: 1.2em;
|
||
|
font-weight: bold;
|
||
|
line-height: 2.4em;
|
||
|
height: 2.4em;
|
||
|
padding: 0 0.5em;
|
||
|
margin: 0;
|
||
|
position: relative; /* for absolute positioning of searchbar */
|
||
|
/* overflow: hidden; breaks semantic-ui popups */
|
||
|
}
|
||
|
#layout > div > .header {
|
||
|
border-bottom: 1px solid #ddd;
|
||
|
}
|
||
|
#layout > div > .footer {
|
||
|
border-top: 1px solid #ddd;
|
||
|
}
|
||
|
|
||
8 years ago
|
#taskmenu a.button-logout {
|
||
|
position: absolute;
|
||
|
bottom: 0;
|
||
8 years ago
|
color: @taskmenu-logout-button-color;
|
||
8 years ago
|
}
|
||
|
|
||
|
|
||
|
@media screen and (max-width: 1200px) { /* small */
|
||
8 years ago
|
body > #layout > div.sidebar,
|
||
|
body > #layout > div.list {
|
||
|
min-width: 260px;
|
||
|
}
|
||
8 years ago
|
body > #layout > div:not(.selected),
|
||
|
body > #layout > div.menu span.button-inner {
|
||
|
display: none;
|
||
|
}
|
||
|
body > #layout > div > .header > a.back-sidebar-button {
|
||
|
display: inline;
|
||
|
}
|
||
|
body > #layout > div.menu,
|
||
|
body > #layout > div.content {
|
||
|
display: flex;
|
||
|
}
|
||
|
body > #layout > div.menu a,
|
||
|
body > #layout > div.menu a:before,
|
||
|
body > #layout > div.menu {
|
||
|
width: 45px;
|
||
|
}
|
||
|
body > #layout > div.menu a:before {
|
||
|
margin: 0.4em 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 768px) { /* tablet */
|
||
8 years ago
|
body {
|
||
|
font-size: 1.2em;
|
||
|
}
|
||
8 years ago
|
#layout > div > .header > .toolbar:not(.searchbar),
|
||
8 years ago
|
body > #layout > div:not(.selected) {
|
||
|
display: none;
|
||
|
}
|
||
|
body > #layout > div.menu {
|
||
|
display: flex;
|
||
|
}
|
||
8 years ago
|
body > #layout > div.sidebar,
|
||
8 years ago
|
body > #layout > div.list {
|
||
|
max-width: 100%;
|
||
|
}
|
||
8 years ago
|
body > #layout > div > .header > a.toolbar-menu-button,
|
||
8 years ago
|
body > #layout > div > .header > .buttons {
|
||
|
display: block;
|
||
|
float: right;
|
||
|
}
|
||
|
body > #layout > div > .header > a.back-list-button {
|
||
|
display: block;
|
||
|
float: left;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 480px) { /* phone */
|
||
|
body > #layout > div > .header > a.menu-button {
|
||
|
display: inline;
|
||
|
}
|
||
|
body > #layout > div.menu span.button-inner {
|
||
|
display: block;
|
||
|
}
|
||
|
body > #layout > div.menu {
|
||
|
display: none;
|
||
|
position: absolute;
|
||
|
z-index: 2;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
width: auto;
|
||
|
margin: 38pt 3pt 3pt 3pt;
|
||
|
padding-bottom: 8pt;
|
||
|
opacity: 0.96;
|
||
|
text-align:center;
|
||
|
border-radius: 4pt;
|
||
|
}
|
||
|
body > #layout > div.menu a,
|
||
|
body > #layout > div.menu a:before {
|
||
|
display: inline-block;
|
||
|
width: 100px;
|
||
|
}
|
||
|
#taskmenu a.button-logout {
|
||
|
position: relative;
|
||
|
}
|
||
|
}
|
||
|
|
||
8 years ago
|
@media screen and (max-width: 319px) {
|
||
|
#layout > div > .header > .buttons > button:before {
|
||
|
content: "" !important;
|
||
|
float: none !important;
|
||
|
}
|
||
|
body > #layout > div.sidebar,
|
||
|
body > #layout > div.list {
|
||
8 years ago
|
min-width: @page-min-width;
|
||
8 years ago
|
}
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
|
||
|
|
||
8 years ago
|
/*** Login form ***/
|
||
|
|
||
8 years ago
|
.task-login #content {
|
||
8 years ago
|
text-align: center;
|
||
|
width: 100%;
|
||
|
background: url(images/watermark.jpg) center -20px no-repeat;
|
||
|
}
|
||
|
|
||
|
#login-form {
|
||
|
margin: auto;
|
||
8 years ago
|
width: 95%;
|
||
8 years ago
|
max-width: 320px;
|
||
|
}
|
||
|
|
||
|
#login-form table {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
#login-form div.ui.input {
|
||
|
width: 100%;
|
||
|
margin-bottom: 1em;
|
||
|
}
|
||
|
|
||
|
/*** Common UI elements ***/
|
||
|
|
||
|
#uploadform,
|
||
|
.ui.modal,
|
||
|
.voice {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
body.iframe .formcontent {
|
||
|
padding: 1em;
|
||
|
}
|
||
|
|
||
|
body.iframe .formbuttons {
|
||
|
padding: 0 1em 1em 1em;
|
||
|
}
|
||
|
|
||
|
#messagestack {
|
||
|
position: absolute;
|
||
|
bottom: 0.5em;
|
||
|
right: 0.5em;
|
||
|
z-index: 50000;
|
||
|
width: 300px;
|
||
|
height: auto;
|
||
|
max-height: 85%;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
|
||
|
#messagestack div.voice {
|
||
|
position: absolute;
|
||
|
top: -1000px;
|
||
|
}
|
||
|
|
||
|
#messagestack div a {
|
||
8 years ago
|
color: #94c0da; /* TODO: less'ify this color */
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
#messagestack div i.icon {
|
||
|
font-size: 2em !important;
|
||
|
}
|
||
|
|
||
8 years ago
|
#messagestack div a:hover {
|
||
|
text-decoration: underline;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.ui.message {
|
||
|
margin-top: 0.5em;
|
||
|
}
|
||
|
|
||
|
.ui.popup {
|
||
|
padding: 0;
|
||
|
min-width: 180px;
|
||
|
}
|
||
|
|
||
|
.button.disabled,
|
||
|
.listing li a.disabled {
|
||
|
opacity: 0.5;
|
||
|
}
|
||
|
|
||
|
.listbox .scroller {
|
||
|
width: 100%;
|
||
|
overflow-x: hidden;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
|
||
|
.listing tbody td,
|
||
|
.listing li {
|
||
|
display: block;
|
||
|
border-bottom: 1px solid #f4f4f4;
|
||
|
cursor: default;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.listbox .listitem a,
|
||
|
.listbox .listitem span,
|
||
|
.listbox .tablink a,
|
||
|
.listing tbody td,
|
||
|
.listing li a {
|
||
|
display: block;
|
||
|
text-decoration: none;
|
||
|
cursor: default;
|
||
|
padding: 0 0.5em;
|
||
|
white-space: nowrap;
|
||
|
vertical-align: middle;
|
||
8 years ago
|
line-height: 2.4em;
|
||
8 years ago
|
}
|
||
|
|
||
|
.listing tbody td {
|
||
|
display: table-cell;
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
table.listing {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
ul.listing {
|
||
|
display: block;
|
||
|
list-style: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
ul.listing li {
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
ul.listing li ul {
|
||
|
border-top: 1px solid #f4f4f4;
|
||
|
padding-left: 1.5em;
|
||
|
}
|
||
|
ul.listing li ul li:last-child {
|
||
|
border-bottom: none;
|
||
|
}
|
||
|
|
||
|
ul.treelist li div.treetoggle {
|
||
|
position: absolute;
|
||
|
top: 7px;
|
||
|
left: 4px;
|
||
|
width: 13px;
|
||
|
height: 13px;
|
||
|
background: /* TODO */ no-repeat;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.folderlist li.mailbox .unreadcount {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
min-width: 2em;
|
||
8 years ago
|
line-height: 1.4em;
|
||
|
margin: 0.5em 0.2em;
|
||
|
padding: 0 0.3em;
|
||
8 years ago
|
background: /* todo */ #1e70bf;
|
||
8 years ago
|
border-radius: 0.4em;
|
||
8 years ago
|
color: @badge-font-color;
|
||
8 years ago
|
text-align: center;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
ul.listing li input[type=checkbox] {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
right: 0.2em;
|
||
8 years ago
|
height: 2.4em;
|
||
8 years ago
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
.folderlist li.mailbox.selected > a .unreadcount {
|
||
|
background: /* todo */;
|
||
|
}
|
||
|
|
||
|
.folderlist li.mailbox.recent > a .unreadcount {
|
||
|
background: /* todo */;
|
||
|
}
|
||
|
|
||
8 years ago
|
.toolbar {
|
||
|
height: 2.4em;
|
||
|
}
|
||
|
|
||
|
.toolbar .ui.popup,
|
||
|
.toolbar.ui.popup {
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
8 years ago
|
.toolbar > .spacer {
|
||
|
display: inline-block;
|
||
8 years ago
|
width: 1.2em;
|
||
|
}
|
||
|
|
||
8 years ago
|
.toolbar a.button span.inner {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
8 years ago
|
.searchbar {
|
||
|
display: table;
|
||
|
text-align: right;
|
||
|
position: absolute;
|
||
8 years ago
|
background-color: @layout-header-background-color;
|
||
8 years ago
|
z-index: 10;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
}
|
||
|
|
||
8 years ago
|
.searchbar > * {
|
||
|
height: 2.4em;
|
||
|
}
|
||
|
|
||
8 years ago
|
.searchbar > form,
|
||
|
.searchbar > a.button.options,
|
||
|
.searchbar > a.button.reset {
|
||
|
display: none;
|
||
|
width: 1%;
|
||
|
}
|
||
|
|
||
|
.searchbar > form,
|
||
|
.searchbar > form > input {
|
||
|
width: 98%;
|
||
|
}
|
||
|
|
||
|
.searchbar input {
|
||
|
border: none;
|
||
|
border-bottom: 1px solid #ddd;
|
||
|
background: transparent;
|
||
|
}
|
||
|
|
||
|
.searchbar > a.button.search.active {
|
||
8 years ago
|
color: @searchbar-icon-active-color;
|
||
8 years ago
|
}
|
||
|
|
||
|
.header > .buttons > input.button {
|
||
|
padding: 0.3em 0.8em;
|
||
8 years ago
|
font-size: 1em;
|
||
8 years ago
|
}
|
||
|
|
||
|
/* fixes border set by accordion widget */
|
||
|
.propform.ui.accordion td.title {
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
|
||
|
/* make some elements bigger on tablets/phones */
|
||
|
/* TODO: we should/could maybe do this more globally? */
|
||
|
@media screen and (max-width: 1024px) {
|
||
|
}
|
||
|
|
||
8 years ago
|
@media screen and (min-width: 769px) {
|
||
|
ul.toolbar {
|
||
|
margin: 0;
|
||
|
}
|
||
|
ul.toolbar > li {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 768px) {
|
||
|
ul.toolbar a.button .inner {
|
||
|
display: inline;
|
||
|
}
|
||
|
}
|
||
|
|
||
8 years ago
|
@media screen and (max-width: 480px) {
|
||
|
#messagestack {
|
||
|
left: 0.5em;
|
||
|
width: auto;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
8 years ago
|
/* font-icons */
|
||
8 years ago
|
|
||
|
button.ui.button.icon:before,
|
||
|
.toolbar a.button:before,
|
||
|
.toolbarmenu li a:before,
|
||
|
.folderlist li a:before,
|
||
|
.listing.iconized tr td:before,
|
||
|
.listing.iconized li a:before,
|
||
|
#taskmenu a:before {
|
||
8 years ago
|
font-size: 1.25em;
|
||
8 years ago
|
/*display: inline-block;*/
|
||
|
/* FIXME: with inline-block we have a problem with icon alignment,
|
||
|
use display:block; float: left;
|
||
|
*/
|
||
|
display: block;
|
||
|
float: left;
|
||
|
margin: 0em 0.25rem 0em 0em;
|
||
|
width: 1.18em;
|
||
|
height: 1em;
|
||
|
font-family: 'Icons';
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
text-decoration: inherit;
|
||
|
text-align: center;
|
||
|
speak: none;
|
||
|
font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-webkit-backface-visibility: hidden;
|
||
|
backface-visibility: hidden;
|
||
|
}
|
||
|
|
||
|
button.ui.button.icon:before {
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
|
.toolbar a.button:before {
|
||
|
display: inline;
|
||
|
float: initial;
|
||
|
}
|
||
|
|
||
|
.toolbar a.button {
|
||
|
padding: 0 0.3em;
|
||
|
}
|
||
|
|
||
|
.toolbar .dropbutton > a.button:first-child {
|
||
|
padding-right: 0;
|
||
|
}
|
||
|
.toolbar .dropbutton > a.button.dropdown {
|
||
|
font-size: 70%;
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
|
||
|
#taskmenu a {
|
||
|
padding: 0.4em 0;
|
||
|
}
|
||
|
|
||
|
#taskmenu a,
|
||
|
#taskmenu a:before {
|
||
|
display: block;
|
||
|
width: 60px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
8 years ago
|
#taskmenu a:before {
|
||
|
font-size: 1.5em;
|
||
|
margin-bottom: 0.1em;
|
||
|
}
|
||
|
|
||
8 years ago
|
#taskmenu a.button-mail:before {
|
||
8 years ago
|
content: @fa-var-envelope;
|
||
8 years ago
|
}
|
||
|
#taskmenu a.button-addressbook:before {
|
||
8 years ago
|
content: @fa-var-user;
|
||
8 years ago
|
}
|
||
|
#taskmenu a.button-settings:before {
|
||
8 years ago
|
content: @fa-var-cog;
|
||
8 years ago
|
}
|
||
|
#taskmenu a.button-help:before {
|
||
8 years ago
|
content: @fa-var-life-bouy;
|
||
8 years ago
|
}
|
||
|
#taskmenu a.button-logout:before {
|
||
8 years ago
|
content: @fa-var-power-off;
|
||
8 years ago
|
}
|
||
|
#taskmenu a.button-logout:hover {
|
||
8 years ago
|
color: @taskmenu-logout-button-hover-color;
|
||
8 years ago
|
}
|
||
|
|
||
|
.listing.iconized li.preferences > a:before {
|
||
8 years ago
|
content: @fa-var-sliders;
|
||
8 years ago
|
}
|
||
|
.listing.iconized li.folders > a:before {
|
||
8 years ago
|
content: @fa-var-folder;
|
||
8 years ago
|
}
|
||
|
.listing.iconized li.responses > a:before {
|
||
8 years ago
|
content: @fa-var-comment;
|
||
8 years ago
|
}
|
||
|
.listing.iconized li.identities > a:before {
|
||
8 years ago
|
content: @fa-var-at;
|
||
8 years ago
|
}
|
||
|
.listing.iconized li.password > a:before {
|
||
8 years ago
|
content: @fa-var-lock;
|
||
8 years ago
|
}
|
||
|
.listing.iconized li.addressbook a:before {
|
||
8 years ago
|
content: @fa-var-book;
|
||
8 years ago
|
}
|
||
|
.listing.iconized li.contactgroup a:before {
|
||
8 years ago
|
content: @fa-var-group;
|
||
|
}
|
||
|
.listing.iconized li.contactsearch a:before {
|
||
|
content: @fa-var-search;
|
||
8 years ago
|
}
|
||
|
.listing.iconized tr.contact.person td.name:before {
|
||
8 years ago
|
content: @fa-var-user;
|
||
8 years ago
|
}
|
||
|
.listing.iconized tr.general > td.section:before {
|
||
8 years ago
|
content: @fa-var-desktop;
|
||
8 years ago
|
}
|
||
|
.listing.iconized tr.mailbox > td.section:before {
|
||
8 years ago
|
content: @fa-var-envelope-o;
|
||
8 years ago
|
}
|
||
|
.listing.iconized tr.mailview > td.section:before {
|
||
8 years ago
|
content: @fa-var-inbox;
|
||
8 years ago
|
}
|
||
|
.listing.iconized tr.compose > td.section:before {
|
||
8 years ago
|
content: @fa-var-paper-plane;
|
||
8 years ago
|
}
|
||
|
.listing.iconized tr.addressbook > td.section:before {
|
||
8 years ago
|
content: @fa-var-user;
|
||
8 years ago
|
}
|
||
|
.listing.iconized tr.folders > td.section:before {
|
||
8 years ago
|
content: @fa-var-folder-o;
|
||
8 years ago
|
}
|
||
|
.listing.iconized tr.server > td.section:before {
|
||
8 years ago
|
content: @fa-var-server;
|
||
8 years ago
|
}
|
||
|
|
||
|
.folderlist li a:before {
|
||
8 years ago
|
content: @fa-var-folder-o;
|
||
8 years ago
|
}
|
||
|
.folderlist li.inbox a:before {
|
||
8 years ago
|
content: @fa-var-inbox;
|
||
8 years ago
|
}
|
||
|
.folderlist li.trash a:before {
|
||
8 years ago
|
content: @fa-var-trash;
|
||
8 years ago
|
}
|
||
|
.folderlist li.trash.empty a:before {
|
||
8 years ago
|
content: @fa-var-trash-o;
|
||
8 years ago
|
}
|
||
|
.folderlist li.drafts a:before {
|
||
8 years ago
|
content: @fa-var-edit;
|
||
8 years ago
|
}
|
||
|
.folderlist li.sent a:before {
|
||
8 years ago
|
content: @fa-var-paper-plane;
|
||
8 years ago
|
}
|
||
|
.folderlist li.junk a:before {
|
||
8 years ago
|
content: ""; /* TODO */
|
||
8 years ago
|
}
|
||
|
.folderlist li.archive a:before {
|
||
8 years ago
|
content: @fa-var-archive;
|
||
8 years ago
|
}
|
||
|
|
||
|
.toolbarmenu li a.print:before {
|
||
8 years ago
|
content: @fa-var-print;
|
||
8 years ago
|
}
|
||
|
.toolbarmenu li a.copy:before {
|
||
8 years ago
|
content: @fa-var-copy;
|
||
8 years ago
|
}
|
||
|
.toolbarmenu li a.move:before {
|
||
8 years ago
|
content: @fa-var-arrows;
|
||
8 years ago
|
}
|
||
|
.toolbarmenu li a.source:before {
|
||
8 years ago
|
content: @fa-var-flask;
|
||
8 years ago
|
}
|
||
|
.toolbarmenu li a.download:before {
|
||
8 years ago
|
content: @fa-var-download;
|
||
8 years ago
|
}
|
||
|
.toolbarmenu li a.extwin:before {
|
||
8 years ago
|
content: @fa-var-external-link;
|
||
8 years ago
|
}
|
||
|
.toolbarmenu li a.edit:before {
|
||
8 years ago
|
content: @fa-var-edit; /* TODO: edit.asnew */
|
||
8 years ago
|
}
|
||
|
.toolbarmenu li a.read:before {
|
||
8 years ago
|
content: @fa-var-star-o;
|
||
8 years ago
|
}
|
||
|
.toolbarmenu li a.unread:before {
|
||
8 years ago
|
content: @fa-var-star;
|
||
8 years ago
|
}
|
||
|
.toolbarmenu li a.flag:before {
|
||
8 years ago
|
content: @fa-var-flag;
|
||
8 years ago
|
}
|
||
|
.toolbarmenu li a.unflag:before {
|
||
8 years ago
|
content: @fa-var-flag-o;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.reply:before {
|
||
8 years ago
|
content: @fa-var-mail-reply;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.reply-all:before {
|
||
8 years ago
|
content: @fa-var-mail-reply-all;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.forward:before {
|
||
8 years ago
|
content: @fa-var-mail-forward;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.delete:before {
|
||
8 years ago
|
content: @fa-var-trash-o;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.markmessage:before {
|
||
8 years ago
|
content: @fa-var-tag;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.more:before {
|
||
8 years ago
|
content: @fa-var-ellipsis-h;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.dropdown:before {
|
||
8 years ago
|
content: @fa-var-caret-down;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.settings:before {
|
||
8 years ago
|
content: @fa-var-cog;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.print:before {
|
||
8 years ago
|
content: @fa-var-print;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.search:before {
|
||
8 years ago
|
content: @fa-var-search;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.upload:before,
|
||
|
.toolbar a.button.import:before {
|
||
8 years ago
|
content: @fa-var-upload;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.download:before,
|
||
|
.toolbar a.button.export:before {
|
||
8 years ago
|
content: @fa-var-download;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.compose:before {
|
||
8 years ago
|
content: @fa-var-edit;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.refresh:before {
|
||
8 years ago
|
content: @fa-var-refresh;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.archive:before {
|
||
8 years ago
|
content: @fa-var-archive;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.encrypt:before {
|
||
8 years ago
|
content: @fa-var-lock;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.firstpage:before {
|
||
8 years ago
|
content: @fa-var-fast-backward;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.prevpage:before {
|
||
8 years ago
|
content: @fa-var-backward;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.nextpage:before {
|
||
8 years ago
|
content: @fa-var-forward;
|
||
8 years ago
|
}
|
||
|
.toolbar a.button.lastpage:before {
|
||
8 years ago
|
content: @fa-var-fast-forward;
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
.searchbar > a.button.reset:before {
|
||
8 years ago
|
content: @fa-var-remove;
|
||
8 years ago
|
}
|
||
|
.searchbar > a.button.options:before {
|
||
8 years ago
|
content: @fa-var-angle-down;
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
button.icon.save:before {
|
||
8 years ago
|
content: @fa-var-check;
|
||
8 years ago
|
}
|
||
|
button.icon.edit:before {
|
||
8 years ago
|
content: @fa-var-pencil;
|
||
8 years ago
|
}
|
||
|
button.icon.qrcode:before {
|
||
8 years ago
|
content: @fa-var-qrcode;
|
||
8 years ago
|
}
|
||
8 years ago
|
button.icon.search:before {
|
||
8 years ago
|
content: @fa-var-search;
|
||
8 years ago
|
}
|
||
8 years ago
|
|
||
|
|
||
|
/**** Styles for widescreen (3-column) view ****/
|
||
|
/* copied from larry removing .widescreen prefix */
|
||
|
|
||
|
|
||
|
.messagelist > thead,
|
||
|
.messagelist .branch,
|
||
|
table.fixedcopy {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.messagelist td {
|
||
|
border-left: 0;
|
||
|
vertical-align: top;
|
||
|
padding: 3px 2px !important;
|
||
|
}
|
||
|
|
||
|
.messagelist td.subject {
|
||
|
width: 99%;
|
||
|
white-space: wrap;
|
||
|
position: relative; /* for span.date positioning in Firefox */
|
||
|
}
|
||
|
|
||
|
.messagelist td.threads {
|
||
|
width: 20px;
|
||
|
vertical-align: bottom;
|
||
|
}
|
||
|
|
||
|
.messagelist td.threads div {
|
||
|
padding-bottom: 1px;
|
||
|
}
|
||
|
|
||
|
.messagelist td.flags {
|
||
|
width: 22px;
|
||
|
}
|
||
|
|
||
|
.messagelist td.subject span {
|
||
8 years ago
|
line-height: 2em;
|
||
8 years ago
|
}
|
||
|
|
||
|
.messagelist td.subject span.date {
|
||
|
right: 2px;
|
||
|
top: 3px;
|
||
|
position: absolute;
|
||
8 years ago
|
color: #666; /* TODO */
|
||
8 years ago
|
}
|
||
|
|
||
|
.messagelist td.subject span.fromto {
|
||
8 years ago
|
padding-left: 1.5em;
|
||
8 years ago
|
display: block;
|
||
|
margin-right: 10em;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
8 years ago
|
color: #666; /* TODO */
|
||
8 years ago
|
}
|
||
|
|
||
|
.messagelist tr.flagged td.subject span.date,
|
||
|
.messagelist tr.flagged td.subject span.fromto {
|
||
8 years ago
|
color: #ff5c33; /* TODO */
|
||
8 years ago
|
}
|
||
|
|
||
|
.messagelist tr.deleted td.subject span.date,
|
||
|
.messagelist tr.deleted td.subject span.fromto {
|
||
8 years ago
|
color: #ccc; /* TODO */
|
||
8 years ago
|
}
|
||
|
|
||
|
.messagelist td.subject span.subject {
|
||
|
clear: both;
|
||
|
display: block;
|
||
8 years ago
|
font-size: 1em;
|
||
8 years ago
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
|
||
|
.messagelist td.flags span {
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
display: block;
|
||
|
margin-left: 1px;
|
||
|
}
|
||
|
|
||
|
.messagelist td.flags span.flag {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.messagelist tr td.subject span.msgicon,
|
||
|
.messagelist tr td.subject span.unreadchildren {
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
}
|