629 lines
13 KiB
SCSS
629 lines
13 KiB
SCSS
// This file provides styles for common elements used in all skins.
|
|
|
|
@import "_colors";
|
|
@import "_icons";
|
|
@import "_animations";
|
|
|
|
@font-face {
|
|
font-family: 'RcpIconFont';
|
|
src: url('../../../../plugins/xframework/assets/fonts/roundcube_plus_icons/roundcube_plus_icons.woff2') format('woff2'),
|
|
url('../../../../plugins/xframework/assets/fonts/roundcube_plus_icons/roundcube_plus_icons.woff') format('woff'),
|
|
url('../../../../plugins/xframework/assets/fonts/roundcube_plus_icons/roundcube_plus_icons.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
// boxes
|
|
.success-box,
|
|
.warning-box,
|
|
.error-box,
|
|
.info-box {
|
|
padding: .8rem 1.5rem !important;
|
|
margin: 0 0 1.5em 0;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
text-align: left;
|
|
align-items: center;
|
|
|
|
.icon {
|
|
position: relative;
|
|
top: 0.14rem;
|
|
font-size: 1.5rem;
|
|
padding-right: 1rem;
|
|
}
|
|
|
|
.text {
|
|
flex: 1 1 auto;
|
|
display: inline-block;
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
.success-box { @include success-box; }
|
|
.warning-box { @include warning-box; }
|
|
.error-box { @include error-box; }
|
|
.info-box { @include info-box; }
|
|
|
|
// buttons
|
|
.button-bar {
|
|
button, .btn {
|
|
margin: .2em .2em .2em 0;
|
|
}
|
|
|
|
&.text-right {
|
|
button, .btn {
|
|
margin: .2em 0 .2em .2em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btn-xs {
|
|
padding: 2px 4px;
|
|
}
|
|
|
|
// cpanel workaround for the jquery ui color picker that doesn't work
|
|
.cpanel {
|
|
.minicolors-sprite {
|
|
background-image: url(../images/cpanel-minicolors-sprite.png) !important;
|
|
}
|
|
}
|
|
|
|
// turn a button into an anchor--in elastic we can't put anchors into popups because it disables the popup trigger button if there are anchors (!)
|
|
html body button.xanchor {
|
|
display: inline-block;
|
|
background: transparent !important;
|
|
border: none !important;
|
|
box-shadow: none !important;
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
width: auto !important;
|
|
line-height: normal !important;
|
|
font-weight: normal !important;
|
|
font-size: 1rem;
|
|
text-align: left;
|
|
color: #00acff;
|
|
-webkit-appearance: none;
|
|
|
|
&:hover {
|
|
color: #008acc;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
// password input with a hide/show button
|
|
.password-toggle-container {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.password-toggle-button {
|
|
position: relative;
|
|
cursor: pointer;
|
|
margin-left: .8rem;
|
|
|
|
&:before {
|
|
@include icon($eye);
|
|
}
|
|
}
|
|
|
|
input[type="text"] + .password-toggle-button:after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 1.5em;
|
|
transform: translate(-50%, -50%) rotate(-45deg);
|
|
transform-origin: center;
|
|
border-top: 1px solid;
|
|
}
|
|
}
|
|
|
|
// xsidebar
|
|
|
|
#xsidebar {
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
|
|
div.ui-sortable-helper {
|
|
-ms-transform: scale(0.8, 0.8);
|
|
-webkit-transform: scale(0.8, 0.8);
|
|
transform: scale(0.8, 0.8);
|
|
border: 1px solid;
|
|
@include border-color;
|
|
@include background-color;
|
|
}
|
|
|
|
.placeholder {
|
|
height: 3px;
|
|
background: #990033;
|
|
}
|
|
|
|
h2.boxtitle {
|
|
position: relative;
|
|
cursor: pointer;
|
|
font-size: 1em;
|
|
padding: 5px 8px;
|
|
|
|
&:first-child {
|
|
border-top: none;
|
|
}
|
|
|
|
.sidebar-title-button {
|
|
float: right;
|
|
padding-left: 5px;
|
|
padding-top: 1px;
|
|
@include text-color;
|
|
|
|
&:hover {
|
|
@include text-highlight-color;
|
|
}
|
|
}
|
|
|
|
span.sidebar-title-text {
|
|
display: block;
|
|
margin-right: 2.5em;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.box-content {
|
|
position: relative;
|
|
padding: 8px;
|
|
line-height: unset;
|
|
}
|
|
|
|
.collapsed .box-content {
|
|
display: none;
|
|
}
|
|
|
|
.bottom-links {
|
|
margin-top: 7px;
|
|
|
|
a {
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
#xsidebar-order-note {
|
|
padding: 20px 0;
|
|
|
|
&:before {
|
|
padding-right: 10px;
|
|
}
|
|
}
|
|
|
|
#xsidebar-order-table {
|
|
.placeholder {
|
|
@include background-highlight-color;
|
|
}
|
|
|
|
tr.ui-sortable-helper {
|
|
max-width: 300px !important;
|
|
border: 1px solid;
|
|
@include border-color;
|
|
@include background-highlight-color;
|
|
}
|
|
|
|
tr.ui-sortable-handle {
|
|
margin: 0;
|
|
}
|
|
|
|
td {
|
|
&.title {
|
|
width: 30%;
|
|
|
|
label {
|
|
|
|
&:before {
|
|
font-size: 0.9em !important;
|
|
padding-right: 15px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// information popups
|
|
|
|
.touch .xinfo {
|
|
display: none;
|
|
}
|
|
|
|
.xinfo {
|
|
display: inline-block;
|
|
position: relative;
|
|
|
|
&.right div {
|
|
right: auto;
|
|
}
|
|
|
|
&.top div {
|
|
top: auto;
|
|
bottom: 20px;
|
|
}
|
|
|
|
&:hover div {
|
|
display: block;
|
|
}
|
|
|
|
div {
|
|
position: absolute;
|
|
display: none;
|
|
right: 0;
|
|
text-align: left;
|
|
min-width: 200px;
|
|
max-width: 300px;
|
|
font-weight: normal;
|
|
top: 20px;
|
|
padding: 8px;
|
|
border-radius: 5px;
|
|
z-index: 99999;
|
|
white-space: normal;
|
|
@include popup;
|
|
}
|
|
}
|
|
|
|
// badges (small red elements indicating numbers)
|
|
|
|
.xbadge {
|
|
display: inline-block;
|
|
position: relative;
|
|
top: -.9em;
|
|
left: -.5em;
|
|
z-index: 888;
|
|
color: #fff !important;
|
|
@include background-badge-color(true);
|
|
margin: 0;
|
|
line-height: 1em;
|
|
padding: 3px 4px 2px 4px !important;
|
|
border-radius: 5px !important;
|
|
font-size: 0.8em !important;
|
|
font-weight: normal;
|
|
font-family: sans-serif !important;
|
|
text-align: center;
|
|
}
|
|
|
|
// tabs
|
|
|
|
.xtabs.ui-tabs {
|
|
border: none;
|
|
background: transparent;
|
|
|
|
.ui-tabs-nav {
|
|
height: auto;
|
|
background: transparent;
|
|
margin-bottom: 15px;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
border-bottom: 1px solid;
|
|
@include border-color;
|
|
}
|
|
|
|
.ui-tabs-nav li {
|
|
background: transparent;
|
|
padding: 0;
|
|
margin: 0;
|
|
float: left;
|
|
border: none;
|
|
|
|
.xbadge {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: auto;
|
|
}
|
|
}
|
|
|
|
.ui-tabs-nav .ui-tabs-anchor {
|
|
padding: 15px;
|
|
font-weight: normal;
|
|
background: transparent;
|
|
border: none;
|
|
@include text-color;
|
|
}
|
|
|
|
.ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
|
|
position: relative;
|
|
display: block;
|
|
padding-bottom: 12px;
|
|
font-weight: bold;
|
|
border-bottom: 3px solid;
|
|
@include border-highlight-color;
|
|
}
|
|
|
|
.ui-tabs-panel {
|
|
padding: 0;
|
|
background: transparent;
|
|
}
|
|
}
|
|
|
|
// flatpickr
|
|
|
|
.flatpickr-calendar {
|
|
box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08) !important;
|
|
|
|
.flatpickr-months {
|
|
border-bottom: 1px solid #e6e6e6;
|
|
|
|
.flatpickr-prev-month,
|
|
.flatpickr-next-month {
|
|
line-height: 1.1rem;
|
|
|
|
&:hover svg {
|
|
fill: #000;
|
|
}
|
|
}
|
|
}
|
|
|
|
.flatpickr-current-month {
|
|
input.cur-year {
|
|
height: 1.4rem;
|
|
}
|
|
|
|
span.cur-month {
|
|
font-weight: normal;
|
|
padding-right: 3px;
|
|
|
|
&:hover {
|
|
background: transparent !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.flatpickr-day.selected {
|
|
border-color: transparent !important;
|
|
}
|
|
|
|
.numInputWrapper:hover {
|
|
background: transparent !important;
|
|
}
|
|
|
|
&.hasTime .flatpickr-time {
|
|
border-bottom: 1px solid #e6e6e6;
|
|
|
|
input:hover,
|
|
input:focus,
|
|
.flatpickr-am-pm:hover,
|
|
.flatpickr-am-pm:focus {
|
|
background: transparent !important;
|
|
}
|
|
}
|
|
|
|
.flatpickr-confirm {
|
|
margin: 5px 10px;
|
|
border-radius: 3px;
|
|
height: auto;
|
|
padding: 1px;
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.xelastic .flatpickr-calendar {
|
|
.flatpickr-current-month input.cur-year,
|
|
.flatpickr-current-month span.cur-month {
|
|
font-size: 1.4rem;
|
|
}
|
|
|
|
.flatpickr-day.selected,
|
|
.flatpickr-confirm {
|
|
background: #6e8791;
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.xlarry .flatpickr-calendar {
|
|
.flatpickr-current-month input.cur-year,
|
|
.flatpickr-current-month span.cur-month {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.flatpickr-day.selected,
|
|
.flatpickr-confirm {
|
|
background: #2c2f33;
|
|
|
|
svg {
|
|
fill: #fff;
|
|
}
|
|
}
|
|
}
|
|
|
|
// responsive modal dialog; if not used in angular, set display: none on the mask in the instance css
|
|
|
|
.dark-mode .xdialog-mask {
|
|
background: rgba(0, 0, 0, .7);
|
|
}
|
|
|
|
.xdialog-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: rgba(0, 0, 0, .5);
|
|
z-index: 999;
|
|
|
|
.xdialog-box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 20% auto 0 auto;
|
|
max-width: 460px;
|
|
max-height: 90%;
|
|
box-sizing: border-box;
|
|
text-align: center;
|
|
border: 1px solid;
|
|
@include border-color;
|
|
@include background-color;
|
|
|
|
&.full-screen {
|
|
position: fixed;
|
|
max-width: None;
|
|
margin: 0;
|
|
max-height: none;
|
|
top: 5%;
|
|
left: 5%;
|
|
right: 5%;
|
|
bottom: 5%;
|
|
|
|
.layout-phone & {
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
.xdialog-title {
|
|
flex: 0 0 auto;
|
|
position: relative;
|
|
padding: 1rem;
|
|
text-align: left;
|
|
font-size: 1.25rem;
|
|
font-weight: bold;
|
|
border-bottom: 1px solid;
|
|
@include border-color;
|
|
|
|
.xdialog-close {
|
|
position: absolute;
|
|
right: 1rem;
|
|
border: none !important;
|
|
font-size: 2rem;
|
|
padding: 0;
|
|
margin: 0;
|
|
background: transparent !important;
|
|
}
|
|
}
|
|
|
|
.xdialog-contents {
|
|
flex: 1 1 auto;
|
|
padding: 1rem;
|
|
text-align: left;
|
|
|
|
.xdialog-error {
|
|
@include error-box;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
.xdialog-buttons {
|
|
flex: 0 0 auto;
|
|
padding: 1rem;
|
|
text-align: right;
|
|
border-top: 1px solid;
|
|
@include border-color;
|
|
|
|
button {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// the elastic skin adds margin, top, and left css styles to ui-datepicker to make sure that it always gets displayed in the middle of the
|
|
// screen; we can't remove those styles, so instead, if we want to display the datepicker right under the text input, we remove the
|
|
// ui-datepicker class and add the xdatepicker class, then we style the datepicker here
|
|
.xdatepicker {
|
|
min-width: 20rem;
|
|
|
|
.ui-datepicker-header {
|
|
display: flex;
|
|
padding: .6rem;
|
|
align-items: center;
|
|
margin-bottom: .8rem;
|
|
font-size: 1.2em;
|
|
border-bottom: 1px solid;
|
|
@include border-color;
|
|
|
|
.ui-datepicker-title {
|
|
flex: 1;
|
|
text-align: center;
|
|
|
|
select {
|
|
background: transparent;
|
|
border: none;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
outline: none;
|
|
padding: 0 5px;
|
|
width: auto;
|
|
appearance: none;
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
box-shadow: none !important;
|
|
|
|
option {
|
|
@include background-color;
|
|
@include text-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui-datepicker-prev,
|
|
.ui-datepicker-next {
|
|
@include text-color;
|
|
text-decoration: none !important;
|
|
cursor: pointer;
|
|
padding: .3rem;
|
|
|
|
span {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.ui-datepicker-prev:before {
|
|
@include icon($chevronLeft);
|
|
}
|
|
|
|
.ui-datepicker-next {
|
|
order: 2;
|
|
|
|
&:before {
|
|
@include icon($chevronRight);
|
|
}
|
|
}
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
|
|
td {
|
|
text-align: center;
|
|
|
|
span {
|
|
display: block;
|
|
padding: .2rem 0;
|
|
}
|
|
|
|
a {
|
|
display: block;
|
|
background: transparent !important;
|
|
border: none !important;
|
|
padding: .2rem 0;
|
|
@include text-color;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
&.ui-state-highlight {
|
|
@include text-highlight-color;
|
|
@include background-highlight-color(10, true);
|
|
}
|
|
|
|
&.ui-state-active {
|
|
@include text-highlight-color;
|
|
@include background-highlight-color(30, true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
th {
|
|
text-align: center;
|
|
font-size: .8em;
|
|
@include text-dim-color;
|
|
}
|
|
} |