2017-09-06 13:52:18 +03:00
|
|
|
|
/* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
|
|
|
|
|
This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
|
See the COPYING-README file. */
|
|
|
|
|
|
|
|
|
|
input {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&#openid, &#webdav {
|
|
|
|
|
width: 20em;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* PERSONAL */
|
|
|
|
|
.clear {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
clear: both;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* icons for sidebar */
|
|
|
|
|
.nav-icon-personal-settings {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
@include icon-color('personal', 'settings', $color-black);
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-icon-security {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
@include icon-color('toggle-filelist', 'settings', $color-black);
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-icon-clientsbox {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
@include icon-color('change', 'settings', $color-black);
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-icon-federated-cloud {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
@include icon-color('share', 'settings', $color-black);
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-icon-second-factor-backup-codes, .nav-icon-ssl-root-certificate {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
@include icon-color('password', 'settings', $color-black);
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#avatarform {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.avatardiv {
|
|
|
|
|
margin: 10px auto;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.warning {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.jcrop-keymgr {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#displayavatar {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
text-align: center;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#uploadavatarbutton, #selectavatar, #removeavatar {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
padding: 21px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.jcrop-holder {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
z-index: 500;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#cropper {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
float: left;
|
|
|
|
|
z-index: 500;
|
|
|
|
|
/* float cropper above settings page to prevent unexpected flowing from dynamically sized element */
|
|
|
|
|
position: fixed;
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
top: 45px;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100% - 45px);
|
|
|
|
|
|
|
|
|
|
.inner-container {
|
|
|
|
|
z-index: 2001;
|
|
|
|
|
/* above the top bar if needed */
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #333;
|
|
|
|
|
border-radius: var(--border-radius-large);
|
|
|
|
|
box-shadow: 0 0 10px var(--color-box-shadow);
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
|
|
.jcrop-holder,
|
|
|
|
|
.jcrop-holder img,
|
|
|
|
|
img.jcrop-preview {
|
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.button {
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.primary {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 23:40:03 +03:00
|
|
|
|
#personal-settings-avatar-container {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: inline-grid;
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
grid-template-rows: 2fr 1fr;
|
|
|
|
|
vertical-align: top;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.profile-settings-container {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: inline-grid;
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
grid-template-rows: 1fr 2fr 1fr;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.personal-show-container {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
width: 100%;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.personal-settings-setting-box input {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&[type='text'], &[type='email'], &[type='tel'], &[type='url'] {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
select {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&#timezone,
|
|
|
|
|
&#languageinput,
|
|
|
|
|
&#localeinput {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 23:40:03 +03:00
|
|
|
|
#personal-settings {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: grid;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
max-width: 1500px;
|
|
|
|
|
grid-template-columns: 1fr 2fr 1fr;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.section {
|
|
|
|
|
padding: 10px 10px;
|
|
|
|
|
border: 0;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
h2 {
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
2018-04-25 13:26:58 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.personal-info {
|
|
|
|
|
margin-right: 10%;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.personal-info[class^='icon-'], .personal-info[class*=' icon-'] {
|
|
|
|
|
background-position: 0px 2px;
|
|
|
|
|
padding-left: 30px;
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
}
|
2018-04-17 23:40:03 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-08-06 23:55:30 +03:00
|
|
|
|
// Button for 'Reasons to use Nextcloud in your organization'
|
|
|
|
|
.development-notice {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link-button {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 16px;
|
|
|
|
|
padding: 14px 20px;
|
|
|
|
|
background-color: var(--color-primary);
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-radius: var(--border-radius-pill);
|
|
|
|
|
border: 1px solid var(--color-primary);
|
|
|
|
|
box-shadow: 0 2px 9px var(--color-box-shadow);
|
|
|
|
|
|
|
|
|
|
&:active,
|
|
|
|
|
&:hover,
|
|
|
|
|
&:focus {
|
|
|
|
|
color: var(--color-primary);
|
|
|
|
|
background-color: var(--color-primary-text);
|
|
|
|
|
border-color: var(--color-primary) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.icon-file {
|
|
|
|
|
padding-left: 48px;
|
|
|
|
|
background-position: 24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-04-17 23:40:03 +03:00
|
|
|
|
@media (min-width: 1200px) and (max-width: 1400px) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#personal-settings {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 2fr;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#personal-settings-avatar-container {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.personal-settings-container {
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
grid-template-rows: 1fr 1fr 1fr;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.profile-settings-container {
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
|
grid-column: 2;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
}
|
2018-04-17 23:40:03 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 1200px) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#personal-settings {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#personal-settings-avatar-container {
|
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.personal-settings-container {
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
grid-template-rows: 1fr 1fr 1fr;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.profile-settings-container {
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
|
}
|
2018-04-17 23:40:03 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 560px) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#personal-settings {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#personal-settings-avatar-container {
|
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.personal-settings-container {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.profile-settings-container {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
grid-template-rows: 1fr 1fr;
|
|
|
|
|
}
|
2018-04-17 23:40:03 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 13:52:18 +03:00
|
|
|
|
.personal-settings-container {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: inline-grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
grid-template-rows: 1fr 1fr 2fr;
|
2018-10-02 17:20:37 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&:after {
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
> div {
|
|
|
|
|
h3 {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
width: 100%;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
> label {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
> form span {
|
|
|
|
|
&[class^='icon-checkmark'], &[class^='icon-error'] {
|
|
|
|
|
position: relative;
|
|
|
|
|
right: 8px;
|
|
|
|
|
top: -28px;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.verify {
|
|
|
|
|
position: relative;
|
|
|
|
|
left: 100%;
|
|
|
|
|
top: 0;
|
|
|
|
|
height: 0;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
img {
|
|
|
|
|
padding: 12px 7px 6px;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.verify-action {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
input:disabled {
|
|
|
|
|
background-color: white;
|
|
|
|
|
color: black;
|
|
|
|
|
border: none;
|
|
|
|
|
opacity: 100;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-25 13:26:58 +03:00
|
|
|
|
|
|
|
|
|
#body-settings #quota {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
cursor: default;
|
|
|
|
|
position: relative;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
progress {
|
|
|
|
|
height: 6px;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&::-moz-progress-bar {
|
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&::-webkit-progress-value {
|
|
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
|
}
|
2018-04-25 13:26:58 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
div {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
2018-04-25 13:26:58 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-09-06 13:52:18 +03:00
|
|
|
|
/* verify accounts */
|
|
|
|
|
/* only show pointer cursor when popup will be there */
|
|
|
|
|
.verification-dialog {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: none;
|
|
|
|
|
right: -9px;
|
|
|
|
|
top: 40px;
|
|
|
|
|
width: 275px;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
p {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.verificationCode {
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
display: block;
|
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-03 18:05:15 +03:00
|
|
|
|
.federation-menu {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
position: relative;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-left: 10px;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&:focus {
|
|
|
|
|
.icon-federation-menu {
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
}
|
2018-05-03 18:05:15 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.icon-federation-menu {
|
|
|
|
|
padding-left: 16px;
|
|
|
|
|
background-size: 16px;
|
|
|
|
|
background-position: left center;
|
|
|
|
|
opacity: .3;
|
|
|
|
|
cursor: inherit;
|
|
|
|
|
|
|
|
|
|
.icon-triangle-s {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
cursor: inherit;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.federationScopeMenu {
|
|
|
|
|
top: 44px;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.popovermenu {
|
|
|
|
|
.menuitem {
|
|
|
|
|
// override h3 heading font size
|
|
|
|
|
font-size: 12.8px;
|
|
|
|
|
line-height: 1.6em;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.menuitem-text-detail {
|
|
|
|
|
opacity: .75;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.active {
|
|
|
|
|
box-shadow: inset 2px 0 var(--color-primary);
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.menuitem-text {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-01 05:34:36 +03:00
|
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
|
opacity: .5;
|
|
|
|
|
|
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-16 22:18:01 +03:00
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#groups-groups {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
padding-top: 5px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.clientsbox img {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
height: 60px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#sslCertificate {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
tr.expired {
|
|
|
|
|
background-color: rgba(255, 0, 0, 0.5);
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
td {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#displaynameerror,
|
|
|
|
|
#displaynamechanged {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: none;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input#identity {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
width: 20em;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#showWizard {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: inline-block;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.msg {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.success {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #47a447;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.error {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #d2322d;
|
|
|
|
|
padding: 3px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
}
|
2018-06-29 14:01:22 +03:00
|
|
|
|
|
2017-09-06 13:52:18 +03:00
|
|
|
|
|
|
|
|
|
table.nostyle {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
label {
|
|
|
|
|
margin-right: 2em;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
td {
|
|
|
|
|
padding: 0.2em 0;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-29 14:01:22 +03:00
|
|
|
|
#security-password {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#passwordform {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#pass1, .personal-show-container, #passwordbutton {
|
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
width: 200px;
|
|
|
|
|
min-width: 150px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#pass2 {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.password-state {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.strengthify-wrapper {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-radius: 0 0 2px 2px;
|
|
|
|
|
margin-top: -6px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
height: 3px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
}
|
2018-06-29 14:01:22 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-26 17:25:18 +03:00
|
|
|
|
/* Two-Factor Authentication (2FA) */
|
|
|
|
|
|
|
|
|
|
#two-factor-auth {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
h3 {
|
|
|
|
|
margin-top: 24px;
|
|
|
|
|
}
|
2018-09-26 17:25:18 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
li > div {
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
2018-09-26 17:25:18 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.two-factor-provider-settings-icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
vertical-align: sub;
|
|
|
|
|
}
|
2018-09-26 17:25:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 13:52:18 +03:00
|
|
|
|
.social-button {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
padding-left: 0 !important;
|
|
|
|
|
margin-left: -10px;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
img {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* USERS */
|
|
|
|
|
|
|
|
|
|
.isgroup {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.groupname {
|
|
|
|
|
width: 85%;
|
|
|
|
|
display: block;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.active .groupname {
|
|
|
|
|
width: 65%;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li.active {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.delete,
|
|
|
|
|
.rename {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-16 19:00:56 +03:00
|
|
|
|
.app-navigation-entry-utils {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.delete,
|
|
|
|
|
.rename {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#usersearchform {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 2px;
|
|
|
|
|
right: 0;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
input {
|
|
|
|
|
width: 150px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
label {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* display table at full width */
|
|
|
|
|
table.grid {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
th {
|
|
|
|
|
height: 2em;
|
|
|
|
|
color: #999;
|
|
|
|
|
border-bottom: 1px solid var(--color-border);
|
|
|
|
|
padding: 0 .5em;
|
|
|
|
|
padding-left: .8em;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
td {
|
|
|
|
|
border-bottom: 1px solid var(--color-border);
|
|
|
|
|
padding: 0 .5em;
|
|
|
|
|
padding-left: .8em;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-09 17:55:45 +03:00
|
|
|
|
td, th {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.name {
|
|
|
|
|
padding-left: .8em;
|
|
|
|
|
min-width: 5em;
|
|
|
|
|
max-width: 12em;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.password {
|
|
|
|
|
padding-left: .8em;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
> img {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
2017-09-26 17:59:57 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.displayName > img {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.password,
|
|
|
|
|
&.mailAddress {
|
|
|
|
|
min-width: 5em;
|
|
|
|
|
max-width: 12em;
|
|
|
|
|
cursor: pointer;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
span {
|
|
|
|
|
width: 90%;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.mailAddress {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.password > span {
|
|
|
|
|
margin-right: 1.2em;
|
|
|
|
|
color: #C7C7C7;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span.usersLastLoginTooltip {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
white-space: nowrap;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* APPS */
|
|
|
|
|
#app-content > svg.app-filter {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
float: left;
|
|
|
|
|
height: 0;
|
|
|
|
|
width: 0;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app-category-app-bundles {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin-bottom: 20px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.appinfo {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin: 1em 40px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app-navigation {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
/* Navigation icons */
|
|
|
|
|
img {
|
|
|
|
|
margin-bottom: -3px;
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
width: 16px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
li span.no-icon {
|
|
|
|
|
padding-left: 32px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
ul li.active > span.utils {
|
|
|
|
|
.delete, .rename {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.appwarning {
|
|
|
|
|
background: #fcc;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.appwarning:hover {
|
|
|
|
|
background: #fbb;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-external {
|
|
|
|
|
color: var(--color-text-maxcontrast);
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span.version {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin-left: 1em;
|
|
|
|
|
margin-right: 1em;
|
|
|
|
|
color: var(--color-text-maxcontrast);
|
2019-01-17 12:28:52 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-version {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
color: var(--color-text-maxcontrast);
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-level {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
span {
|
|
|
|
|
color: var(--color-text-maxcontrast);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: 1px solid var(--color-text-maxcontrast);
|
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
|
padding: 3px 6px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
a {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
margin: -6px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.official {
|
|
|
|
|
background-position: left center;
|
|
|
|
|
background-position: 5px center;
|
|
|
|
|
padding-left: 25px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.supported {
|
|
|
|
|
border-color: var(--color-success);
|
|
|
|
|
background-position: left center;
|
|
|
|
|
background-position: 5px center;
|
|
|
|
|
padding-left: 25px;
|
|
|
|
|
color: var(--color-success);
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-score {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
position: relative;
|
|
|
|
|
top: 4px;
|
|
|
|
|
opacity: .5;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 20:51:57 +03:00
|
|
|
|
.app-settings-content {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#searchresults {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2019-09-23 14:00:04 +03:00
|
|
|
|
|
2018-05-23 20:51:57 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2018-05-23 20:51:57 +03:00
|
|
|
|
#apps-list.store {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.section {
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-name {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 5px 0;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-name, .app-image * {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-summary {
|
|
|
|
|
opacity: .7;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-image-icon .icon-settings-dark {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 150px;
|
|
|
|
|
background-size: 45px;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-score-image {
|
|
|
|
|
height: 14px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.actions {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 20:51:57 +03:00
|
|
|
|
#app-sidebar #app-details-view {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
h2 {
|
|
|
|
|
.icon-settings-dark,
|
|
|
|
|
svg {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
opacity: .7;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-02 00:19:10 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-level {
|
|
|
|
|
clear: right;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
.supported,
|
|
|
|
|
.official {
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-score-image {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
2018-05-25 14:25:58 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-author, .app-licence {
|
|
|
|
|
color: var(--color-text-maxcontrast);
|
2018-07-31 16:08:08 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-dependencies {
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-description p {
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.close {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
padding: 14px;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
width: 44px;
|
|
|
|
|
height: 44px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-groups {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
2018-07-31 16:08:08 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.appslink {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-level,
|
|
|
|
|
.actions,
|
|
|
|
|
.documentation,
|
|
|
|
|
.app-dependencies,
|
|
|
|
|
.app-description {
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-25 14:25:58 +03:00
|
|
|
|
@media only screen and (min-width: 1601px) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.store .section {
|
|
|
|
|
width: 25%;
|
|
|
|
|
}
|
|
|
|
|
.with-app-sidebar .store .section {
|
|
|
|
|
width: 33%;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-25 14:25:58 +03:00
|
|
|
|
@media only screen and (max-width: 1600px) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.store .section {
|
|
|
|
|
width: 25%;
|
|
|
|
|
}
|
|
|
|
|
.with-app-sidebar .store .section {
|
|
|
|
|
width: 33%;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-25 14:25:58 +03:00
|
|
|
|
@media only screen and (max-width: 1400px) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.store .section {
|
|
|
|
|
width: 33%;
|
|
|
|
|
}
|
|
|
|
|
.with-app-sidebar .store .section {
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
2018-05-25 14:25:58 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 900px) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.store .section {
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
|
|
|
|
.with-app-sidebar .store .section {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 19:19:35 +03:00
|
|
|
|
@media only screen and (max-width: $breakpoint-mobile) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.store .section {
|
|
|
|
|
width: 50%;
|
|
|
|
|
}
|
2018-05-25 14:25:58 +03:00
|
|
|
|
}
|
2018-08-07 01:28:14 +03:00
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 480px) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.store .section {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2018-08-07 01:28:14 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 13:52:18 +03:00
|
|
|
|
/* hide app version and level on narrower screens */
|
2018-06-02 09:49:30 +03:00
|
|
|
|
@media only screen and (max-width: 900px) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.apps-list.installed {
|
|
|
|
|
.app-version, .app-level {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-02 09:49:30 +03:00
|
|
|
|
@media only screen and (max-width: 500px) {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.apps-list.installed .app-groups {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-02-13 16:02:04 +03:00
|
|
|
|
#version.section {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
border-bottom: none;
|
2019-02-13 16:02:04 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 13:52:18 +03:00
|
|
|
|
.section {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
/* section divider lines, none needed for last one */
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
|
border-bottom: 1px solid var(--color-border);
|
|
|
|
|
}
|
2018-04-17 19:49:08 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
/* correctly display help icons next to headings */
|
|
|
|
|
h2 {
|
|
|
|
|
margin-bottom: 22px;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.icon-info {
|
|
|
|
|
padding: 6px 20px;
|
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2018-04-17 19:49:08 +03:00
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-02 13:03:15 +03:00
|
|
|
|
.personal-settings-setting-box .section {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
padding: 10px 30px;
|
2017-11-02 13:03:15 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 13:52:18 +03:00
|
|
|
|
.followupsection {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: block;
|
|
|
|
|
padding: 0 30px 30px 30px;
|
|
|
|
|
color: #555;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-image {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
position: relative;
|
|
|
|
|
height: 150px;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
overflow: hidden;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-name, .app-version, .app-score, .app-level {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: inline-block;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-description-toggle-show, .app-description-toggle-hide {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
clear: both;
|
|
|
|
|
padding: 7px 0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
opacity: .5;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-description-container {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
clear: both;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 7px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-description {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
clear: both;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app-category-1 {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin-bottom: 18px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-23 14:04:00 +03:00
|
|
|
|
/* capitalize 'Other' category */
|
2017-09-06 13:52:18 +03:00
|
|
|
|
|
|
|
|
|
#app-category-925 {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
text-transform: capitalize;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.app-dependencies {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
color: #ce3702;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.missing-dependencies {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
list-style: initial;
|
|
|
|
|
list-style-type: initial;
|
|
|
|
|
list-style-position: inside;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-07 01:28:14 +03:00
|
|
|
|
.apps-list {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.section {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-list-move {
|
|
|
|
|
transition: transform 1s;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#app-list-update-all {
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.counter {
|
|
|
|
|
padding-left: $header-height - 10px;
|
|
|
|
|
margin: 10px;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.installed {
|
|
|
|
|
.apps-list-container {
|
|
|
|
|
display: table;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin-bottom: 100px;
|
|
|
|
|
|
|
|
|
|
.section {
|
|
|
|
|
display: table-row;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
|
|
> * {
|
|
|
|
|
display: table-cell;
|
|
|
|
|
height: initial;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
float: none;
|
|
|
|
|
border-bottom: 1px solid var(--color-border);
|
|
|
|
|
padding: 6px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.selected {
|
|
|
|
|
background-color: var(--color-background-dark);
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.groups-enable {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
margin-right: 3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-11 16:29:41 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-image {
|
|
|
|
|
width: 44px;
|
|
|
|
|
height: auto;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-image-icon svg,
|
|
|
|
|
.app-image-icon .icon-settings-dark {
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
opacity: .5;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
|
text-align: right;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.icon-loading-small {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
top: 4px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-11 16:29:41 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&:not(.installed) .app-image-icon svg {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 43px;
|
|
|
|
|
/* position halfway vertically */
|
|
|
|
|
width: 64px;
|
|
|
|
|
height: 64px;
|
|
|
|
|
opacity: .1;
|
2019-10-11 16:29:41 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-content: flex-start;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.hidden {
|
|
|
|
|
display: none;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.section {
|
|
|
|
|
position: relative;
|
|
|
|
|
flex: 0 0 auto;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
h2.app-name {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 8px 0;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&:hover {
|
|
|
|
|
background-color: var(--color-background-dark);
|
|
|
|
|
}
|
2017-09-06 14:28:00 +03:00
|
|
|
|
}
|
2018-05-25 14:25:58 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.app-description {
|
|
|
|
|
p {
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
ul {
|
|
|
|
|
list-style: disc;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
ol {
|
|
|
|
|
list-style: decimal;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
ol, ul {
|
|
|
|
|
padding-left: 15px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
> {
|
|
|
|
|
ul, ol {
|
|
|
|
|
margin-left: 19px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
ul {
|
|
|
|
|
ol, ul {
|
|
|
|
|
padding-left: 15px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
/* Bundle header */
|
|
|
|
|
.apps-header {
|
|
|
|
|
display: table-row;
|
|
|
|
|
position: relative;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
div {
|
|
|
|
|
display: table-cell;
|
|
|
|
|
height: 70px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
h2 {
|
|
|
|
|
display: table-cell;
|
|
|
|
|
position: absolute;
|
|
|
|
|
padding-left: 6px;
|
|
|
|
|
padding-top: 15px;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.enable {
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -1px;
|
|
|
|
|
margin-left: 12px;
|
|
|
|
|
}
|
2018-04-17 20:19:58 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
+ .section {
|
|
|
|
|
margin-top: 50px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-09-06 14:28:00 +03:00
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-07 01:28:14 +03:00
|
|
|
|
#apps-list-search {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.section {
|
|
|
|
|
h2 {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
2018-08-07 01:28:14 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-06 13:52:18 +03:00
|
|
|
|
/* LOG */
|
|
|
|
|
#log {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
white-space: normal;
|
|
|
|
|
margin-bottom: 14px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#lessLog {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: none;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table.grid td.date {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
white-space: nowrap;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#log-section p {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin-top: 20px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-06 13:20:44 +03:00
|
|
|
|
#security-warning-state-ok,
|
2018-06-06 14:28:50 +03:00
|
|
|
|
#security-warning-state-warning,
|
2018-06-06 13:20:44 +03:00
|
|
|
|
#security-warning-state-failure,
|
|
|
|
|
#security-warning-state-loading {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
span {
|
|
|
|
|
vertical-align: middle;
|
2018-06-06 13:20:44 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.message {
|
|
|
|
|
padding: 12px;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.icon {
|
|
|
|
|
width: 32px;
|
|
|
|
|
height: 32px;
|
|
|
|
|
background-position: center center;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.icon-checkmark-white {
|
|
|
|
|
background-color: var(--color-success);
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.icon-error-white {
|
|
|
|
|
background-color: var(--color-warning);
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.icon-close-white {
|
|
|
|
|
background-color: var(--color-error);
|
|
|
|
|
}
|
2017-12-01 13:35:01 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#shareAPI {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
p {
|
|
|
|
|
padding-bottom: 0.8em;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
input#shareapiExpireAfterNDays {
|
|
|
|
|
width: 40px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.indent {
|
|
|
|
|
padding-left: 28px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.double-indent {
|
|
|
|
|
padding-left: 56px;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.nocheckbox {
|
|
|
|
|
padding-left: 20px;
|
|
|
|
|
}
|
2017-12-01 13:35:01 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#shareApiDefaultPermissionsSection label {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin-right: 20px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#fileSharingSettings h3 {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: inline-block;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#publicShareDisclaimerText {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
width: calc(100% - 23px);
|
|
|
|
|
/* 20 px left margin, 3 px right margin */
|
|
|
|
|
max-width: 600px;
|
|
|
|
|
height: 150px;
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
box-sizing: border-box;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* correctly display help icons next to headings */
|
|
|
|
|
|
|
|
|
|
.icon-info {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
padding: 11px 20px;
|
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
|
opacity: .5;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-21 20:41:06 +03:00
|
|
|
|
#two-factor-auth h2,
|
|
|
|
|
#shareAPI h2,
|
|
|
|
|
#encryptionAPI h2,
|
|
|
|
|
#mail_general_settings h2 {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: inline-block;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#encryptionAPI li {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
list-style-type: initial;
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
padding: 5px 0;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mail_settings p {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
label:first-child {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 300px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
select:nth-child(2),
|
|
|
|
|
input:not([type='button']) {
|
|
|
|
|
width: 143px;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#mail_smtpport {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
width: 40px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cronlog {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin-left: 10px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.status {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
display: inline-block;
|
|
|
|
|
height: 16px;
|
|
|
|
|
width: 16px;
|
|
|
|
|
vertical-align: text-bottom;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.success {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#selectGroups select {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
height: 36px;
|
|
|
|
|
padding: 7px 10px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#log .log-message {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
word-break: break-all;
|
|
|
|
|
min-width: 180px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
span {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.success {
|
|
|
|
|
background-color: var(--color-success);
|
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.error {
|
|
|
|
|
background-color: var(--color-error);
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&.indeterminate {
|
|
|
|
|
background-color: var(--color-warning);
|
|
|
|
|
border-radius: 40% 0;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
}
|
2018-06-29 14:01:22 +03:00
|
|
|
|
|
2017-09-06 13:52:18 +03:00
|
|
|
|
|
|
|
|
|
/* OPERA hack for strengthify*/
|
|
|
|
|
doesnotexist:-o-prefocus, .strengthify-wrapper {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
left: 185px;
|
|
|
|
|
width: 129px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.trusted-domain-warning {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
background: #ce3702;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#postsetupchecks {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
ul {
|
|
|
|
|
margin-left: 44px;
|
|
|
|
|
list-style: disc;
|
2018-06-04 17:20:01 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
li {
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
}
|
2018-06-06 13:20:44 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
ul {
|
|
|
|
|
list-style: circle;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
2018-06-04 17:20:01 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.loading {
|
|
|
|
|
height: 50px;
|
|
|
|
|
background-position: left center;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.errors, .errors a {
|
|
|
|
|
color: var(--color-error);
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.warnings, .warnings a {
|
|
|
|
|
color: var(--color-warning);
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.hint {
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-12 17:16:29 +03:00
|
|
|
|
#security-warning {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
a {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
2018-06-12 17:16:29 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.extra-top-margin {
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#admin-tips li {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
list-style: initial;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
a {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 3px 0;
|
|
|
|
|
}
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#selectEncryptionModules {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin-left: 30px;
|
|
|
|
|
padding: 10px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#encryptionModules {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
padding: 10px;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#warning {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
color: red;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-hint {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
margin-top: -12px;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
opacity: .7;
|
2017-09-06 13:52:18 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-09 19:46:34 +03:00
|
|
|
|
|
|
|
|
|
/* USERS LIST -------------------------------------------------------------- */
|
|
|
|
|
#body-settings {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
$grid-row-height: 60px;
|
2020-02-19 00:26:52 +03:00
|
|
|
|
$grid-col-min-width: 160px;
|
|
|
|
|
overflow-x: scroll;
|
2020-09-22 13:23:53 +03:00
|
|
|
|
min-height: 100%;
|
|
|
|
|
height: auto;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
#app-content.user-list-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-column-gap: 20px;
|
2020-02-25 21:06:21 +03:00
|
|
|
|
grid-auto-rows: minmax(60px, max-content);
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2018-03-09 19:46:34 +03:00
|
|
|
|
.row {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
// TODO replace with css4 subgrid when available
|
|
|
|
|
// fallback for ie11 no grid
|
|
|
|
|
display: flex;
|
|
|
|
|
display: grid;
|
2020-02-19 00:26:52 +03:00
|
|
|
|
min-height: $grid-row-height;
|
2020-01-16 22:18:01 +03:00
|
|
|
|
grid-row-start: span 1;
|
|
|
|
|
grid-gap: 3px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
/* let's define the column until storage path,
|
|
|
|
|
what follows will be manually defined */
|
2020-02-19 00:26:52 +03:00
|
|
|
|
grid-template-columns:
|
|
|
|
|
44px
|
|
|
|
|
minmax($grid-col-min-width + 30px, 1fr) // username, displayname
|
|
|
|
|
minmax($grid-col-min-width, 1fr) // password
|
|
|
|
|
minmax($grid-col-min-width, 1fr) // email
|
|
|
|
|
minmax(1.5*$grid-col-min-width, 1fr) // groups
|
|
|
|
|
minmax(1.5*$grid-col-min-width, 1fr) // group admins
|
|
|
|
|
repeat(auto-fit, minmax($grid-col-min-width, 1fr));
|
2020-01-16 22:18:01 +03:00
|
|
|
|
border-bottom: var(--color-border) 1px solid;
|
|
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
|
opacity: .5;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
/* grid col width */
|
|
|
|
|
.name,
|
|
|
|
|
.password,
|
|
|
|
|
.mailAddress,
|
|
|
|
|
.languages,
|
|
|
|
|
.storageLocation,
|
|
|
|
|
.userBackend,
|
|
|
|
|
.lastLogin {
|
|
|
|
|
min-width: $grid-col-min-width;
|
2020-02-19 00:26:52 +03:00
|
|
|
|
|
2020-03-18 17:15:03 +03:00
|
|
|
|
doesnotexist:-o-prefocus, .strengthify-wrapper {
|
|
|
|
|
color: var(--color-text-dark);
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
&:not(.row--editable) {
|
|
|
|
|
&.name,
|
|
|
|
|
&.password,
|
|
|
|
|
&.displayName,
|
|
|
|
|
&.mailAddress,
|
|
|
|
|
&.userBackend,
|
|
|
|
|
&.languages {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2020-01-16 22:18:01 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.groups,
|
|
|
|
|
.subadmins,
|
|
|
|
|
.quota {
|
2020-02-19 00:26:52 +03:00
|
|
|
|
min-width: $grid-col-min-width;
|
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.multiselect {
|
2020-02-19 00:26:52 +03:00
|
|
|
|
width: 100%;
|
2020-01-16 22:18:01 +03:00
|
|
|
|
color: var(--color-text-dark);
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.obfuscated {
|
|
|
|
|
width: 400px;
|
|
|
|
|
opacity: .7;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.userActions {
|
2020-02-19 00:26:52 +03:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
2020-01-16 22:18:01 +03:00
|
|
|
|
position: sticky;
|
2020-02-19 00:26:52 +03:00
|
|
|
|
right: 0px;
|
|
|
|
|
min-width: 88px;
|
|
|
|
|
background-color: var(--color-main-background);
|
2020-01-16 22:18:01 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.subtitle {
|
|
|
|
|
color: var(--color-text-maxcontrast);
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
/* various */
|
|
|
|
|
&#grid-header,
|
|
|
|
|
&#new-user {
|
|
|
|
|
@include position('sticky');
|
|
|
|
|
align-self: normal;
|
|
|
|
|
background-color: var(--color-main-background);
|
|
|
|
|
z-index: 100; /* above multiselect */
|
|
|
|
|
top: $header-height;
|
|
|
|
|
|
|
|
|
|
&.sticky {
|
|
|
|
|
box-shadow: 0 -2px 10px 1px var(--color-box-shadow);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* fake input for groups validation */
|
|
|
|
|
input#newgroups {
|
|
|
|
|
position: absolute;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
width: 80% !important;
|
|
|
|
|
margin: 0 10%;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
// separate prop to set initial value to top: 50px
|
|
|
|
|
&#new-user {
|
|
|
|
|
height: 120px;
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.row {
|
|
|
|
|
padding-top: 50px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&#grid-header {
|
|
|
|
|
color: var(--color-text-maxcontrast);
|
|
|
|
|
z-index: 60; /* above new-user */
|
|
|
|
|
border-bottom-width: thin;
|
|
|
|
|
|
|
|
|
|
#headerDisplayName,
|
|
|
|
|
#headerPassword,
|
|
|
|
|
#headerAddress,
|
|
|
|
|
#headerGroups,
|
|
|
|
|
#headerSubAdmins,
|
|
|
|
|
#theHeaderUserBackend,
|
|
|
|
|
#theHeaderLastLogin,
|
|
|
|
|
#headerQuota,
|
|
|
|
|
#theHeaderStorageLocation,
|
|
|
|
|
#headerLanguages {
|
|
|
|
|
/* Line up header text with column content for when there’s inputs */
|
|
|
|
|
padding-left: 7px;
|
|
|
|
|
text-transform: none;
|
|
|
|
|
color: var(--color-text-maxcontrast);
|
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&:hover {
|
|
|
|
|
input:not([type='submit']):not(:focus):not(:active) {
|
|
|
|
|
border-color: var(--color-border) !important;
|
|
|
|
|
}
|
2018-06-22 18:05:33 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
&:not(#grid-header) {
|
|
|
|
|
box-shadow: 5px 0 0 var(--color-primary-element) inset;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-06-22 18:05:33 +03:00
|
|
|
|
|
2020-02-19 00:26:52 +03:00
|
|
|
|
> form {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
> div,
|
2020-02-25 21:06:21 +03:00
|
|
|
|
> .displayName > form,
|
2020-01-16 22:18:01 +03:00
|
|
|
|
> form {
|
|
|
|
|
grid-row: 1;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
color: var(--color-text-lighter);
|
2020-02-25 21:06:21 +03:00
|
|
|
|
flex-grow: 1;
|
2020-01-16 22:18:01 +03:00
|
|
|
|
|
|
|
|
|
> input:not(:focus):not(:active) {
|
|
|
|
|
border-color: transparent;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> input:focus, > input:active {
|
|
|
|
|
+ .icon-confirm {
|
|
|
|
|
display: block !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* inputs like mail, username, password */
|
|
|
|
|
&:not(.userActions) > input:not([type='submit']) {
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.name {
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.displayName,
|
|
|
|
|
&.mailAddress {
|
|
|
|
|
> input {
|
|
|
|
|
text-overflow: ellipsis;
|
2020-02-25 21:06:21 +03:00
|
|
|
|
flex-grow: 1;
|
2020-01-16 22:18:01 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.name,
|
|
|
|
|
&.userBackend {
|
|
|
|
|
/* better multi-line visual */
|
|
|
|
|
line-height: 1.3em;
|
|
|
|
|
max-height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
/* not supported by all browsers
|
|
|
|
|
so we keep the overflow hidden
|
|
|
|
|
as a fallback */
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.quota {
|
2020-01-13 20:37:59 +03:00
|
|
|
|
display: flex;;
|
|
|
|
|
justify-content: left;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
position: relative;
|
2020-01-16 22:18:01 +03:00
|
|
|
|
|
|
|
|
|
progress {
|
2020-01-13 20:37:59 +03:00
|
|
|
|
width: 150px;
|
|
|
|
|
margin-top: 35px;
|
2020-01-16 22:18:01 +03:00
|
|
|
|
height: 3px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-confirm {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
&:not(:active) {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.avatar {
|
|
|
|
|
height: 32px;
|
|
|
|
|
width: 32px;
|
|
|
|
|
margin: 6px;
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.userActions {
|
2020-02-19 00:26:52 +03:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
2020-01-16 22:18:01 +03:00
|
|
|
|
|
|
|
|
|
#newsubmit {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toggleUserActions {
|
|
|
|
|
position: relative;
|
2020-02-19 00:26:52 +03:00
|
|
|
|
display: flex;
|
2020-01-16 22:18:01 +03:00
|
|
|
|
align-items: center;
|
2020-02-19 00:26:52 +03:00
|
|
|
|
background-color: var(--color-main-background);
|
2020-01-16 22:18:01 +03:00
|
|
|
|
|
|
|
|
|
.icon-more {
|
|
|
|
|
width: 44px;
|
|
|
|
|
height: 44px;
|
|
|
|
|
opacity: .5;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
2020-04-03 17:47:19 +03:00
|
|
|
|
&:focus,
|
|
|
|
|
&:hover,
|
|
|
|
|
&:active {
|
2020-01-16 22:18:01 +03:00
|
|
|
|
opacity: .7;
|
2020-04-03 17:47:19 +03:00
|
|
|
|
background-color: var(--color-background-dark)
|
2020-01-16 22:18:01 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feedback {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
transition: opacity 200ms ease-in-out;
|
|
|
|
|
|
|
|
|
|
.icon-checkmark {
|
|
|
|
|
opacity: .5;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Fill the grid cell */
|
|
|
|
|
.multiselect.multiselect-vue {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2018-03-09 19:46:34 +03:00
|
|
|
|
}
|
2020-01-16 22:18:01 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.infinite-loading-container {
|
2018-03-09 19:46:34 +03:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2020-01-16 22:18:01 +03:00
|
|
|
|
justify-content: center;
|
|
|
|
|
grid-row-start: span 4;
|
2018-03-09 19:46:34 +03:00
|
|
|
|
}
|
2020-01-15 17:48:48 +03:00
|
|
|
|
|
2020-01-16 22:18:01 +03:00
|
|
|
|
.users-list-end {
|
|
|
|
|
opacity: .5;
|
|
|
|
|
user-select: none;
|
2018-03-09 19:46:34 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-01 23:23:31 +03:00
|
|
|
|
}
|