2018-07-12 16:43:17 +00:00
|
|
|
@import (reference) "./colortheme-all.less";
|
|
|
|
@import (reference) "./browser.less";
|
|
|
|
@import (reference) "./variables.less";
|
2019-08-28 13:29:38 +00:00
|
|
|
@import (reference) "./avatar.less";
|
|
|
|
@import (reference) "./tools.less";
|
2017-08-04 10:31:47 +00:00
|
|
|
|
2018-07-14 13:15:23 +00:00
|
|
|
.alertify_main() {
|
|
|
|
--LessLoader_require: LessLoader_currentFile();
|
|
|
|
};
|
|
|
|
& {
|
2017-09-13 10:32:30 +00:00
|
|
|
@max-z-index: 2147483647;
|
2017-08-07 14:27:29 +00:00
|
|
|
@alertify-fore: @colortheme_modal-fg;
|
|
|
|
@alertify-base: @colortheme_modal-bg;
|
2017-08-04 10:31:47 +00:00
|
|
|
|
2017-08-07 14:27:29 +00:00
|
|
|
@alertify-dialog-bg: @alertify-base;
|
2017-08-07 09:19:20 +00:00
|
|
|
@alertify-dialog-fg: @alertify-fore;
|
2017-08-04 10:31:47 +00:00
|
|
|
|
2017-08-07 09:19:20 +00:00
|
|
|
@alertify-btn-fg: @alertify-fore;
|
2017-08-04 10:31:47 +00:00
|
|
|
|
2019-11-21 12:29:23 +00:00
|
|
|
@alertify-light-bg: fade(@alertify-fore, 25%);
|
2017-08-07 14:27:29 +00:00
|
|
|
@alertify-bg: @colortheme_modal-dim;
|
2017-08-07 09:19:20 +00:00
|
|
|
@alertify-fg: @alertify-fore;
|
2017-08-04 10:31:47 +00:00
|
|
|
|
2017-08-07 14:27:29 +00:00
|
|
|
@alertify-input-bg: @colortheme_modal-input;
|
2018-04-13 15:47:33 +00:00
|
|
|
@alertify-input-fg: @colortheme_modal-input-fg;
|
2017-08-04 10:31:47 +00:00
|
|
|
|
2019-11-22 16:03:17 +00:00
|
|
|
@alertify_padding-base: @variables_padding;
|
2017-12-07 18:00:13 +00:00
|
|
|
@alertify_box-shadow: @variables_shadow;
|
2017-08-04 10:31:47 +00:00
|
|
|
|
|
|
|
// Logs to show that something has happened
|
|
|
|
// These show only once
|
|
|
|
|
2019-09-26 10:53:02 +00:00
|
|
|
|
2017-08-04 10:31:47 +00:00
|
|
|
.alertify-logs {
|
2019-09-20 13:27:20 +00:00
|
|
|
z-index: 100001; // alertify logs should be in front of alertify modals
|
2017-08-04 10:31:47 +00:00
|
|
|
@media print {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
> * {
|
|
|
|
padding: @alertify_padding-base @alertify_padding-base * 4;
|
2018-04-16 14:07:40 +00:00
|
|
|
color: @colortheme_notification-color;
|
2017-08-04 10:31:47 +00:00
|
|
|
|
2017-08-07 09:19:20 +00:00
|
|
|
font-family: @colortheme_font;
|
2017-08-04 10:31:47 +00:00
|
|
|
font-size: large;
|
|
|
|
|
|
|
|
box-shadow: @alertify_box-shadow;
|
|
|
|
&, &.default {
|
|
|
|
// FIXME
|
2017-08-08 08:37:37 +00:00
|
|
|
background: @colortheme_notification-log;
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
|
|
|
&.error {
|
2017-08-07 09:19:20 +00:00
|
|
|
font-weight: bold;
|
2017-08-08 08:37:37 +00:00
|
|
|
background: @colortheme_notification-warn;
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
|
|
|
&.success {
|
2017-08-08 08:37:37 +00:00
|
|
|
background: @colortheme_notification-log;
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.alertify {
|
|
|
|
position: fixed;
|
|
|
|
background-color: @alertify-bg;
|
|
|
|
color: @alertify-fg;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-09-13 15:43:17 +00:00
|
|
|
z-index: 100000; // alertify container
|
2018-04-19 09:14:22 +00:00
|
|
|
font: @colortheme_app-font;
|
|
|
|
|
2020-02-19 13:31:59 +00:00
|
|
|
.cp-checkmark {
|
2020-02-20 10:31:54 +00:00
|
|
|
color: @cryptpad_text_col;
|
2020-02-19 13:31:59 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 15:06:22 +00:00
|
|
|
.cp-inline-alert-text {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2017-09-13 10:32:30 +00:00
|
|
|
&.forefront {
|
|
|
|
z-index: @max-z-index; // alertify max forefront
|
|
|
|
}
|
2017-08-04 10:31:47 +00:00
|
|
|
|
2017-09-07 16:54:58 +00:00
|
|
|
.message {
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
color: @alertify-fg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-04 14:02:35 +00:00
|
|
|
h1, h2, h3 {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2017-08-04 10:31:47 +00:00
|
|
|
&.hide {
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&, &.show {
|
|
|
|
box-sizing: border-box;
|
|
|
|
transition: all .33s cubic-bezier(.25, .8, .25, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
&, * {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialog {
|
|
|
|
padding: 12px;
|
2017-09-07 10:45:07 +00:00
|
|
|
/*
|
|
|
|
div.tokenfield {
|
|
|
|
.token {
|
|
|
|
//border: 1px solid red;
|
|
|
|
//color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
color: @colortheme_light-base;
|
|
|
|
background-color: @alertify-dialog-bg;
|
|
|
|
|
|
|
|
input[id$="tokenfield"][type="text"].token-input {
|
|
|
|
background-color: @alertify-dialog-bg !important;
|
|
|
|
}
|
|
|
|
}*/
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
|
|
|
|
2019-10-21 13:22:59 +00:00
|
|
|
.dialog {
|
2017-08-04 10:31:47 +00:00
|
|
|
& > div {
|
|
|
|
background-color: @alertify-dialog-bg;
|
|
|
|
&.half {
|
|
|
|
width: 50%;
|
2017-08-11 15:49:19 +00:00
|
|
|
max-width: 50%;
|
2017-08-04 10:31:47 +00:00
|
|
|
@media (max-width: @browser_media-medium-screen) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2018-01-09 11:02:56 +00:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
margin: 0 auto;
|
|
|
|
position: relative;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
2018-01-09 11:02:56 +00:00
|
|
|
max-height: 100%;
|
|
|
|
display: flex;
|
2017-08-04 10:31:47 +00:00
|
|
|
|
|
|
|
> * {
|
2017-08-11 13:16:51 +00:00
|
|
|
width: 100%;
|
2018-02-09 14:45:47 +00:00
|
|
|
min-width: 260px;
|
2017-08-11 13:16:51 +00:00
|
|
|
max-width: 500px;
|
2017-08-04 10:31:47 +00:00
|
|
|
margin: 0 auto;
|
2017-08-04 14:02:35 +00:00
|
|
|
text-align: left;
|
2017-08-04 10:31:47 +00:00
|
|
|
padding: @alertify_padding-base;
|
|
|
|
background: #fff;
|
2017-08-09 09:48:04 +00:00
|
|
|
box-shadow: @alertify_box-shadow;
|
2019-06-04 09:22:38 +00:00
|
|
|
&.wide {
|
2020-07-28 09:52:51 +00:00
|
|
|
max-width: 850px;
|
2019-06-04 09:22:38 +00:00
|
|
|
}
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.msg {
|
|
|
|
padding: @alertify_padding-base;
|
|
|
|
margin-bottom: @alertify_padding-base;
|
|
|
|
margin: 0;
|
2018-01-09 11:02:56 +00:00
|
|
|
overflow: auto;
|
2019-12-09 11:37:20 +00:00
|
|
|
:last-child {
|
2019-12-06 16:52:53 +00:00
|
|
|
margin-bottom: 0;
|
2019-12-05 15:52:16 +00:00
|
|
|
}
|
2018-01-17 17:39:45 +00:00
|
|
|
}
|
2020-01-16 13:52:04 +00:00
|
|
|
.cp-alertify-type-container {
|
|
|
|
overflow: visible !important;
|
|
|
|
}
|
2018-01-17 17:39:45 +00:00
|
|
|
.alertify-tabs {
|
|
|
|
max-height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
.alertify-tabs-titles {
|
2019-11-21 12:29:23 +00:00
|
|
|
height: 40px;
|
2018-01-17 17:39:45 +00:00
|
|
|
display: flex;
|
|
|
|
border-bottom: 1px solid @alertify-fore;
|
2019-11-21 12:29:23 +00:00
|
|
|
margin-bottom: 10px;
|
2018-01-17 17:39:45 +00:00
|
|
|
box-sizing: content-box;
|
2020-07-28 11:25:27 +00:00
|
|
|
.alertify-tabs-title {
|
2020-02-18 09:28:36 +00:00
|
|
|
.tools_unselectable();
|
2018-01-17 17:39:45 +00:00
|
|
|
font-size: 20px;
|
2019-11-21 12:29:23 +00:00
|
|
|
height: 40px;
|
|
|
|
line-height: 40px;
|
2018-01-17 17:39:45 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0 15px;
|
|
|
|
border-left: 1px solid lighten(@alertify-base, 10%);
|
|
|
|
border-right: 1px solid lighten(@alertify-base, 10%);
|
|
|
|
cursor: pointer;
|
2020-02-18 09:28:36 +00:00
|
|
|
&:not(.disabled):hover {
|
2019-11-21 12:29:23 +00:00
|
|
|
background-color: @alertify-light-bg;
|
|
|
|
}
|
2020-02-18 09:28:36 +00:00
|
|
|
&.disabled {
|
|
|
|
color: #949494;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
2020-07-28 11:25:27 +00:00
|
|
|
&:not(.alertify-tabs-active) {
|
|
|
|
@media (max-width: @browser_media-medium-screen) {
|
|
|
|
.tab-title-text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-17 17:39:45 +00:00
|
|
|
}
|
|
|
|
span.alertify-tabs-active {
|
2020-02-18 09:28:36 +00:00
|
|
|
background-color: @alertify-fore !important;
|
2018-01-17 17:39:45 +00:00
|
|
|
border-left: 1px solid @alertify-fore;
|
|
|
|
border-right: 1px solid @alertify-fore;
|
|
|
|
color: @alertify-base;
|
|
|
|
cursor: default;
|
2018-01-09 17:19:24 +00:00
|
|
|
}
|
2018-01-17 17:39:45 +00:00
|
|
|
}
|
|
|
|
.alertify-tabs-contents {
|
2018-02-09 14:45:47 +00:00
|
|
|
flex: 1 1 auto;
|
2018-01-17 17:39:45 +00:00
|
|
|
min-height: 0;
|
|
|
|
& > div {
|
|
|
|
max-height: 100%;
|
|
|
|
display: none;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
& > div.alertify-tabs-content-active {
|
|
|
|
display: block;
|
2019-08-28 13:29:38 +00:00
|
|
|
&.cp-share-columns {
|
|
|
|
display: flex;
|
|
|
|
}
|
2018-01-09 17:19:24 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
|
|
|
|
2020-07-06 13:07:19 +00:00
|
|
|
.tools_placeholder-color(@cryptpad_color_grey);
|
2019-12-04 12:46:56 +00:00
|
|
|
|
2018-05-31 11:26:06 +00:00
|
|
|
span.cp-password-container {
|
2018-06-14 15:18:32 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2018-05-31 11:26:06 +00:00
|
|
|
margin-bottom: 15px;
|
2018-06-14 15:18:32 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
& > * {
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
2018-05-31 11:26:06 +00:00
|
|
|
}
|
|
|
|
|
2019-12-17 15:54:02 +00:00
|
|
|
.fa-question-circle { // help links to FAQ
|
|
|
|
color: @colortheme_logo-2;
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2019-11-21 15:09:38 +00:00
|
|
|
|
2018-01-17 17:39:45 +00:00
|
|
|
input[type="checkbox"], input[type="radio"] {
|
|
|
|
width: auto;
|
2017-08-07 09:26:40 +00:00
|
|
|
padding: 0;
|
|
|
|
margin-right: 0.5em;
|
2018-01-17 17:39:45 +00:00
|
|
|
margin-top: 1px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
vertical-align: middle;
|
|
|
|
& + label {
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-right: 2em;
|
|
|
|
}
|
2017-08-07 09:26:40 +00:00
|
|
|
}
|
|
|
|
|
2019-12-16 11:51:12 +00:00
|
|
|
input:not(.form-control), textarea {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
2018-06-14 15:18:32 +00:00
|
|
|
|
2020-03-03 15:20:45 +00:00
|
|
|
button:not('.pure-button') {
|
2018-06-14 15:18:32 +00:00
|
|
|
display: inline-block;
|
2019-12-16 11:51:12 +00:00
|
|
|
position: relative;
|
2019-11-21 15:16:25 +00:00
|
|
|
margin: 6px 8px;
|
2018-06-14 15:18:32 +00:00
|
|
|
min-height: 36px;
|
|
|
|
min-width: 88px;
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
2018-06-14 15:18:32 +00:00
|
|
|
|
|
|
|
nav {
|
2019-11-21 15:09:38 +00:00
|
|
|
padding: @alertify_padding-base;
|
2018-06-14 15:18:32 +00:00
|
|
|
text-align: right;
|
2020-03-13 14:05:07 +00:00
|
|
|
button, div.cp-button-confirm {
|
2019-11-22 16:03:17 +00:00
|
|
|
margin: 0px !important;
|
2020-03-13 14:05:07 +00:00
|
|
|
&:not(:first-child):not(.left) {
|
2019-12-17 10:51:17 +00:00
|
|
|
margin-left: @alertify_padding-base !important;
|
2019-11-21 15:09:38 +00:00
|
|
|
}
|
2020-03-05 11:06:35 +00:00
|
|
|
&.left {
|
|
|
|
float: left;
|
|
|
|
}
|
2019-11-21 15:09:38 +00:00
|
|
|
}
|
2020-03-13 14:05:07 +00:00
|
|
|
div.cp-button-confirm {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2018-06-14 15:18:32 +00:00
|
|
|
}
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.alertify-logs {
|
|
|
|
|
|
|
|
position: fixed;
|
2019-09-20 13:27:20 +00:00
|
|
|
z-index: 100001; // alertify logs (just in front of alertify modals
|
2017-08-04 10:31:47 +00:00
|
|
|
|
|
|
|
&.bottom, &:not(.top) {
|
|
|
|
bottom: 16px;
|
2017-12-08 16:30:45 +00:00
|
|
|
/* // Bottom left placement. Default. Use for transitions.
|
2017-08-04 10:31:47 +00:00
|
|
|
&.left, &:not(.right) {
|
|
|
|
> * {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Top right placement
|
|
|
|
&.right {
|
|
|
|
> * {
|
|
|
|
|
|
|
|
}
|
2017-12-08 16:30:45 +00:00
|
|
|
}*/
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// All left positions.
|
|
|
|
&.left, &:not(.right) {
|
|
|
|
left: 16px;
|
|
|
|
> * {
|
|
|
|
float: left;
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
height: auto;
|
|
|
|
|
|
|
|
&.show {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
&, &.hide {
|
|
|
|
left: -110%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
right: 16px;
|
|
|
|
> * {
|
|
|
|
float: right;
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
&.show {
|
|
|
|
right: 0;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
&, &.hide {
|
|
|
|
right: -110%;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top {
|
|
|
|
top: 0;
|
2017-12-08 16:30:45 +00:00
|
|
|
/* // Top left placement, use for transitions.
|
2017-08-04 10:31:47 +00:00
|
|
|
&.left, &:not(.right) {
|
|
|
|
> * {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Top right placement, use for transitions
|
|
|
|
&.right {
|
|
|
|
> * {
|
|
|
|
|
|
|
|
}
|
2017-12-08 16:30:45 +00:00
|
|
|
}*/
|
2017-08-04 10:31:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> * {
|
|
|
|
box-sizing: border-box;
|
|
|
|
transition: all .4s cubic-bezier(.25, .8, .25, 1);
|
|
|
|
position: relative;
|
|
|
|
clear: both;
|
|
|
|
backface-visibility: hidden;
|
|
|
|
perspective: 1000;
|
|
|
|
|
|
|
|
& {
|
|
|
|
max-height: 0;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.show {
|
|
|
|
margin-top: @alertify_padding-base;
|
|
|
|
opacity: 1;
|
|
|
|
max-height: 1000px;
|
|
|
|
padding: @alertify_padding-base;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-28 13:29:38 +00:00
|
|
|
div.wide {
|
|
|
|
.cp-share-columns {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
2020-07-28 09:52:51 +00:00
|
|
|
@media screen and (max-width: (@browser_media-medium-screen)) {
|
|
|
|
flex-flow: column;
|
|
|
|
}
|
2019-08-28 13:29:38 +00:00
|
|
|
|
2019-08-30 15:36:27 +00:00
|
|
|
& > .cp-share-column {
|
2019-08-28 13:29:38 +00:00
|
|
|
width: 50%;
|
2020-07-28 09:52:51 +00:00
|
|
|
@media screen and (max-width: (@browser_media-medium-screen)) {
|
|
|
|
width: unset;
|
|
|
|
}
|
2020-02-18 09:28:36 +00:00
|
|
|
//padding: 0 10px;
|
2019-09-12 16:51:03 +00:00
|
|
|
position: relative;
|
|
|
|
&.contains-nav {
|
2019-11-07 09:33:57 +00:00
|
|
|
nav {
|
|
|
|
position: relative;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
button {
|
|
|
|
margin: 0 !important;
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-left: 8px !important;
|
|
|
|
margin-top: 6px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-12 16:51:03 +00:00
|
|
|
}
|
2019-09-18 14:15:45 +00:00
|
|
|
&:first-child {
|
2020-02-18 09:28:36 +00:00
|
|
|
margin-right: @alertify_padding-base;
|
2020-07-28 09:52:51 +00:00
|
|
|
@media screen and (max-width: (@browser_media-medium-screen)) {
|
|
|
|
margin: 0 0 @alertify_padding-base 0;
|
|
|
|
}
|
2020-02-18 09:28:36 +00:00
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
margin-left: @alertify_padding-base;
|
2020-07-28 09:52:51 +00:00
|
|
|
@media screen and (max-width: (@browser_media-medium-screen)) {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
2020-02-18 09:28:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
& > .cp-share-column-mid {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2020-07-28 09:52:51 +00:00
|
|
|
justify-content: center;
|
|
|
|
@media screen and (max-width: (@browser_media-medium-screen)) {
|
|
|
|
margin-bottom: @alertify_padding-base;
|
|
|
|
}
|
2020-02-18 09:28:36 +00:00
|
|
|
button {
|
|
|
|
width: 50px;
|
|
|
|
margin: 0;
|
|
|
|
min-width: 0;
|
2020-03-02 08:49:46 +00:00
|
|
|
font-size: 18px !important;
|
2019-09-18 14:15:45 +00:00
|
|
|
}
|
2019-08-28 13:29:38 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-20 13:27:20 +00:00
|
|
|
.cp-ownership {
|
|
|
|
& > label {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.cp-share-column {
|
2019-09-26 10:53:02 +00:00
|
|
|
.cp-usergrid-grid {
|
2019-09-09 09:02:08 +00:00
|
|
|
max-height: 225px;
|
2019-08-28 13:29:38 +00:00
|
|
|
overflow-x: auto;
|
|
|
|
}
|
|
|
|
}
|
2019-12-09 11:37:20 +00:00
|
|
|
// Bootstrap Alerts
|
2019-12-03 12:01:31 +00:00
|
|
|
.alert {
|
2019-12-05 14:52:04 +00:00
|
|
|
margin: 0px 0px @alertify_padding-base 0px;
|
2019-12-05 11:19:46 +00:00
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 0px;
|
2019-12-09 11:15:52 +00:00
|
|
|
i {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2020-01-21 16:53:01 +00:00
|
|
|
&.cp-alert-top {
|
2020-01-21 13:16:19 +00:00
|
|
|
margin-top: @alertify_padding-base;
|
|
|
|
}
|
2019-12-04 11:41:08 +00:00
|
|
|
&.alert-primary {
|
|
|
|
background-color: @alertify-base;
|
|
|
|
color: @alertify-fg;
|
|
|
|
border-color: @alertify-fg;
|
2019-12-05 11:01:29 +00:00
|
|
|
a {
|
|
|
|
color: @alertify-fg;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2019-12-04 11:41:08 +00:00
|
|
|
}
|
2019-12-05 14:52:04 +00:00
|
|
|
&.dismissable {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
span.fa-times {
|
|
|
|
font-size: @colortheme_app-font-size;
|
|
|
|
margin-left: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2019-12-03 12:01:31 +00:00
|
|
|
}
|
2018-07-18 12:31:01 +00:00
|
|
|
}
|
|
|
|
|