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.
141 lines
2.7 KiB
Plaintext
141 lines
2.7 KiB
Plaintext
/**
|
|
* Roundcube webmail styles for the Elastic skin
|
|
*
|
|
* Copyright (c) 2017-2018, The Roundcube Dev Team
|
|
*
|
|
* The contents are subject to the Creative Commons Attribution-ShareAlike
|
|
* License. It is allowed to copy, distribute, transmit and to adapt the work
|
|
* by keeping credits to the original authors in the README.md file.
|
|
* See http://creativecommons.org/licenses/by-sa/3.0/ for details.
|
|
*/
|
|
|
|
@import "global";
|
|
@import "layout";
|
|
@import "widgets/common";
|
|
@import "widgets/buttons";
|
|
@import "widgets/jqueryui";
|
|
@import "widgets/dialogs";
|
|
@import "widgets/taskmenu";
|
|
@import "widgets/messages";
|
|
@import "widgets/toolbar";
|
|
@import "widgets/lists";
|
|
@import "widgets/forms";
|
|
@import "widgets/editor";
|
|
@import "widgets/mail";
|
|
|
|
|
|
/*** Login form ***/
|
|
|
|
.task-login #layout > .content {
|
|
text-align: center;
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.task-login #layout .content #logo {
|
|
display: inline-block;
|
|
position: relative;
|
|
top: 16vh;
|
|
max-height: 100px;
|
|
}
|
|
|
|
#login-form {
|
|
margin: 0 auto;
|
|
top: 20vh;
|
|
width: 95%;
|
|
max-width: 320px;
|
|
position: relative;
|
|
|
|
// Fixes table width in IE11
|
|
table, tbody {
|
|
display: block;
|
|
}
|
|
|
|
// Fixes input width in IE11
|
|
.row {
|
|
margin-right: 0;
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
#rcmloginsubmit {
|
|
&:before {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
#login-footer {
|
|
flex: 1;
|
|
color: @color-black-shade-text;
|
|
|
|
& > div {
|
|
margin-top: 1rem;
|
|
padding: 1rem;
|
|
background: @color-black-shade-bg;
|
|
border-radius: .3rem;
|
|
}
|
|
}
|
|
|
|
#login-addon {
|
|
position: absolute;
|
|
bottom: 0;
|
|
max-height: 30%;
|
|
margin: 1rem !important;
|
|
width: auto !important;
|
|
overflow: auto;
|
|
|
|
@media screen and (min-width: (@screen-width-small + 1px)) {
|
|
max-width: @screen-width-small;
|
|
margin: auto !important;
|
|
bottom: 1rem;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
body.task-error-login #layout {
|
|
& > .menu,
|
|
& > .content > .header {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/*** Addressbook UI ***/
|
|
|
|
#contactpic {
|
|
min-width: @layout-contact-icon-width;
|
|
min-height: @layout-contact-icon-width;
|
|
border-radius: .5rem;
|
|
overflow: hidden;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
img {
|
|
max-width: @layout-contact-icon-width;
|
|
max-height: @layout-contact-icon-height;
|
|
}
|
|
}
|
|
|
|
#contacthead {
|
|
.names {
|
|
margin-bottom: .5rem;
|
|
|
|
span.namefield {
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
line-height: 1.2;
|
|
}
|
|
}
|
|
|
|
&.readonly {
|
|
.source.row {
|
|
color: @color-form-hint;
|
|
font-size: 90%;
|
|
margin-bottom: .25rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
@import "_styles";
|