Files
cryptpad/customize.dist/src/less2/include/modals-ui-elements.less

110 lines
2.6 KiB
Plaintext
Raw Normal View History

2019-11-21 13:50:46 +00:00
@import (reference) "./colortheme-all.less";
2019-12-05 14:52:04 +00:00
@import (reference) "./variables.less";
2019-11-21 13:50:46 +00:00
.modals-ui-elements_main() {
--LessLoader_require: LessLoader_currentFile();
2019-11-21 14:31:57 +00:00
}
2019-11-21 13:50:46 +00:00
& {
2019-12-09 11:37:20 +00:00
.cp-spacer {
height: @variables_padding;
}
2019-11-21 13:50:46 +00:00
// Share modal
2019-11-22 16:03:17 +00:00
.msg.cp-inline-radio-group {
2019-11-25 17:54:22 +01:00
overflow: unset !important;
2019-12-05 14:52:04 +00:00
padding: 0px @variables_padding;
2019-11-22 16:03:17 +00:00
.radio-group {
2019-11-21 13:50:46 +00:00
display: flex;
flex-direction: row;
2020-01-16 16:59:31 +00:00
&:not(:last-child) {
2020-01-10 13:11:16 +00:00
margin-bottom: 8px;
}
2019-11-22 16:03:17 +00:00
.cp-radio {
2019-11-21 13:50:46 +00:00
margin-right: 30px;
}
}
}
// Properties modal
.cp-app-prop {
margin-bottom: 10px;
.cp-app-prop-size-container {
height: 20px;
background-color: @colortheme_logo-2;
margin: 10px 0;
padding: 0;
div {
height: 20px;
margin: 0;
padding: 0;
background-color: #CCCCCC;
}
}
.cp-app-prop-size-legend {
color: @colortheme_modal-fg;
display: flex;
margin: 10px 0;
& > div {
display: flex;
align-items: center;
flex-basis: 50%;
margin: 0;
padding: 0;
}
.cp-app-prop-history-size-color, .cp-app-prop-contents-size-color {
display: inline-block;
height: 20px;
width: 20px;
margin-right: 10px;
}
.cp-app-prop-history-size-color {
background-color: #CCCCCC;
}
.cp-app-prop-contents-size-color {
background-color: @colortheme_logo-2;
}
}
}
.cp-app-prop-content {
color: @cryptpad_text_col;
}
2019-12-16 16:06:22 +01:00
2020-02-18 16:10:39 +01:00
// Access modal
.cp-overlay-container {
position: relative;
.cp-overlay {
position: absolute;
background-color: rgba(255,255,255,0.5);
top: 0;
bottom: 0;
left: 0;
right: 0;
}
}
2020-02-19 18:51:04 +01:00
.cp-access-margin-right {
margin-right: 5px !important;
}
2020-02-18 16:10:39 +01:00
2019-12-16 16:51:53 +00:00
// teams invite modal
2019-12-16 16:06:22 +01:00
.cp-teams-invite-block {
2019-12-17 15:34:53 +00:00
display: flex;
2019-12-16 16:06:22 +01:00
align-items: center;
margin-bottom: 5px;
}
.cp-teams-invite-message {
resize: none;
}
2019-12-16 16:06:22 +01:00
.cp-teams-invite-alert {
2019-12-16 16:05:59 +00:00
margin-top: 10px;
}
2019-12-16 16:05:41 +00:00
.cp-teams-invite-spinner {
font-size: 1.2em;
.fa {
margin-right: 10px;;
}
2019-12-16 16:06:22 +01:00
}
2019-12-17 15:09:57 +00:00
.cp-teams-help {
2019-12-17 15:46:38 +00:00
margin-left: 10px;
2019-12-17 15:09:57 +00:00
}
2019-11-22 16:03:17 +00:00
}