first commit
This commit is contained in:
@@ -0,0 +1,88 @@
|
||||
/**
|
||||
* Admin lists.
|
||||
*/
|
||||
ul.admin-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.admin-list li {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
padding: 20px 30px 20px 45px;
|
||||
list-style-type: none;
|
||||
list-style-image: none;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
flex-grow: 1;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.admin-list.compact li {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.admin-list li a.title-link {
|
||||
background: transparent url(../../images/icons/arrow_right.svg) no-repeat 0 17px;
|
||||
/* LTR */
|
||||
background-size: 20px 20px;
|
||||
display: block;
|
||||
padding: 10px 24px;
|
||||
/* LTR */
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.admin-list li:nth-child(1) {
|
||||
border-top: 1px solid #f0f0f0;
|
||||
}
|
||||
|
||||
.admin-list li:hover {
|
||||
background-color: #f7fcff;
|
||||
}
|
||||
|
||||
[dir="rtl"] .admin-list li a.title-link {
|
||||
background: url(../../images/icons/arrow_left.svg) no-repeat right 27px;
|
||||
}
|
||||
|
||||
.admin-list.compact .description {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.admin-list li a.title-link:hover,
|
||||
.admin-list li a.title-link:focus,
|
||||
.admin-list li a.title-link:active {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.admin-list li a.title-link .label {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.admin-list .color-success {
|
||||
padding: 2px 7px;
|
||||
margin-top: 10px;
|
||||
display: inline-flex;
|
||||
border: 1px solid #325e1c;
|
||||
margin-bottom: 5px;
|
||||
line-height: 18px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1280px) {
|
||||
|
||||
.admin-list li:nth-child(1),
|
||||
.admin-list li:nth-child(2) {
|
||||
border-top: 1px solid #f0f0f0;
|
||||
}
|
||||
|
||||
.admin-list li {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
/**
|
||||
* @file
|
||||
* Breadcrumbs.
|
||||
*/
|
||||
|
||||
.breadcrumb {
|
||||
line-height: 1.8;
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.breadcrumb ol {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
[dir="rtl"] .breadcrumb ol {
|
||||
/* This is required to win over specificity of [dir="rtl"] ol */
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.breadcrumb li {
|
||||
display: inline;
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
/* IE8 does not support :not() and :last-child. */
|
||||
.breadcrumb li:before {
|
||||
content: ' \BB ';
|
||||
color: #0678be;
|
||||
}
|
||||
.breadcrumb li:first-child:before {
|
||||
content: none;
|
||||
}
|
||||
@@ -0,0 +1,222 @@
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* Apply these classes to any element (<link>, <button>, <input>, etc.) that
|
||||
* should appear as a button.
|
||||
*/
|
||||
|
||||
|
||||
/* nav action links */
|
||||
nav.action-links {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
nav.action-links li {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
nav.action-links li .button--small {
|
||||
padding: 13px 24px;
|
||||
}
|
||||
|
||||
/* action links */
|
||||
|
||||
.action-links {
|
||||
margin: 0 0 20px 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.action-links li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.button,
|
||||
.views-remove-link,
|
||||
.views-remove-group-link {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
cursor: pointer;
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
padding: 13px 24px;
|
||||
background-color: #f5f5f5;
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
font-size: 12px;
|
||||
line-height: 1;
|
||||
-webkit-transition: all 0.2s;
|
||||
transition: all 0.2s;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
border: 1px solid #b8b8b8;
|
||||
margin-left: 0;
|
||||
margin-top: 20px;
|
||||
min-width: 100px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.button:first-child {
|
||||
margin-left: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.button:hover,
|
||||
.button:focus,
|
||||
.views-remove-link:hover,
|
||||
.views-remove-link:focus,
|
||||
.views-remove-group-link:hover,
|
||||
.views-remove-group-link:focus {
|
||||
background-color: white;
|
||||
border-color: #0678be;
|
||||
color: #0678be;
|
||||
text-decoration: none;
|
||||
outline: transparent;
|
||||
}
|
||||
|
||||
/* small */
|
||||
|
||||
.button--small,
|
||||
.views-remove-link,
|
||||
.views-remove-group-link {
|
||||
font-size: 12px;
|
||||
padding: 6px 10px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 640px) {
|
||||
.button,
|
||||
.views-remove-link,
|
||||
.views-remove-group-link {
|
||||
width: auto;
|
||||
margin-left: 20px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.button {
|
||||
margin-left: 0;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.button:last-child,
|
||||
table .button:last-of-type {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Prevent focus ring being covered by next siblings. */
|
||||
.button:focus {
|
||||
z-index: 10;
|
||||
}
|
||||
.button:active {
|
||||
background-color: #dfdfd9;
|
||||
-webkit-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
.button--primary {
|
||||
padding: 13px 24px;
|
||||
background-color: #7cbc48;
|
||||
border-color: #7cbc48;
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
.button--primary:hover,
|
||||
.button--primary:focus {
|
||||
background-color: #6aab35;
|
||||
border-color: #6aab35;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/**
|
||||
* Overrides styling from system.theme.
|
||||
*/
|
||||
.button-action:before {
|
||||
margin-left: -0.2em; /* LTR */
|
||||
padding-right: 0.2em; /* LTR */
|
||||
font-size: 14px;
|
||||
font-size: 0.875rem;
|
||||
line-height: 16px;
|
||||
-webkit-font-smoothing: auto;
|
||||
}
|
||||
[dir="rtl"] .button-action:before {
|
||||
margin-right: -0.2em;
|
||||
margin-left: 0;
|
||||
padding-right: 0;
|
||||
padding-left: 0.2em;
|
||||
}
|
||||
|
||||
.button:disabled,
|
||||
.button:disabled:active,
|
||||
.button.is-disabled,
|
||||
.button.is-disabled:active {
|
||||
border-color: #d4d4d4;
|
||||
background: #ededed;
|
||||
color: #5c5c5c;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* Link actions.
|
||||
* Style a clickable/tappable element as a link. Duplicates the base style for
|
||||
* the <a> tag, plus a reset for padding, borders and background.
|
||||
*/
|
||||
.link {
|
||||
display: inline;
|
||||
cursor: pointer;
|
||||
padding: 0 2px;
|
||||
border: 0;
|
||||
background: none;
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
color: #0678be;
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.link:hover,
|
||||
.link:focus {
|
||||
text-decoration: none;
|
||||
outline: transparent;
|
||||
}
|
||||
|
||||
.link:hover {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
/**
|
||||
* We've temporarily added the danger button here, bit of a harsh reset but we
|
||||
* need it.
|
||||
* @todo replace with link--danger.
|
||||
* See https://www.drupal.org/node/2123731
|
||||
*/
|
||||
.button--danger {
|
||||
cursor: pointer;
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
}
|
||||
.button--danger:hover,
|
||||
.button--danger:focus,
|
||||
.button--danger:active {
|
||||
color: #c72100;
|
||||
border-color: #c72100;
|
||||
background: none;
|
||||
}
|
||||
.button--danger:disabled,
|
||||
.button--danger.is-disabled {
|
||||
color: #737373;
|
||||
cursor: default;
|
||||
text-decoration: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
box-shadow: none;
|
||||
background: none;
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
.chosen-container {
|
||||
padding: 0 !important;
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-drop {
|
||||
top: 38px !important;
|
||||
box-shadow: none;
|
||||
border-radius: 0 !important;
|
||||
flex-direction: column;
|
||||
border: 1px solid #d1d1d1;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-single,
|
||||
.chosen-container-multi .chosen-choices {
|
||||
background: #fcfcf9;
|
||||
border: 1px solid #d1d1d1;
|
||||
border-radius: 0;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-search {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.chosen-container-single .chosen-single div b {
|
||||
background-position: 0 10px;
|
||||
}
|
||||
|
||||
.chosen-container-active.chosen-with-drop .chosen-single div b {
|
||||
background-position: -18px 10px;
|
||||
}
|
||||
|
||||
.chosen-container-active.chosen-with-drop .chosen-single {
|
||||
background: #fcfcf9;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results {
|
||||
width: 100%;
|
||||
padding: 0 4px;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results li {
|
||||
padding: 8px 6px;
|
||||
}
|
||||
|
||||
.chosen-container .chosen-results li.highlighted {
|
||||
background-color: #0071b8;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.chosen-container-multi .chosen-choices li.search-choice {
|
||||
background-image: none;
|
||||
background-color: #e2e2e2;
|
||||
box-shadow: none;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.chosen-container-active .chosen-choices {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.chosen-container-multi {
|
||||
width: 100% !important;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* @file
|
||||
* Inline items.
|
||||
*/
|
||||
|
||||
.container-inline .form-radios label:after {
|
||||
content: '';
|
||||
}
|
||||
|
||||
.container-inline label:after,
|
||||
.container-inline .label:after {
|
||||
content: ':';
|
||||
}
|
||||
|
||||
.container-inline .form-radios .form-type-radio {
|
||||
margin-right: 1em;
|
||||
}
|
||||
[dir="rtl"] .container-inline .form-radios .form-type-radio {
|
||||
margin-right: 0;
|
||||
margin-left: 1em;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* Content header.
|
||||
*/
|
||||
.content-header {
|
||||
overflow: hidden;
|
||||
background-color: #f5f5f5;
|
||||
padding: 0;
|
||||
}
|
||||
@@ -0,0 +1,262 @@
|
||||
/**
|
||||
* Presentational styles for Drupal dialogs.
|
||||
*/
|
||||
|
||||
.ui-dialog {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
position: absolute;
|
||||
z-index: 1260;
|
||||
padding: 0;
|
||||
animation: fade 0.4s;
|
||||
}
|
||||
|
||||
.ui-dialog.media-library-widget-modal,
|
||||
.ui-dialog.entity-browser-modal {
|
||||
left: 2.5% !important;
|
||||
right: 2.5% !important;
|
||||
max-width: 95%;
|
||||
min-width: 95%;
|
||||
}
|
||||
|
||||
.ui-dialog:focus,
|
||||
.ui-dialog .ui-dialog-titlebar-close:focus {
|
||||
outline: transparent;
|
||||
}
|
||||
|
||||
@keyframes fade {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@media all and (max-width: 48em) {
|
||||
|
||||
/* 768px */
|
||||
.ui-dialog {
|
||||
min-width: 92%;
|
||||
max-width: 92%;
|
||||
}
|
||||
}
|
||||
|
||||
.ui-dialog .ui-dialog-titlebar {
|
||||
background: #0678be;
|
||||
padding: 15px 49px 15px 15px;
|
||||
/* LTR */
|
||||
}
|
||||
|
||||
[dir="rtl"] .ui-dialog .ui-dialog-titlebar {
|
||||
padding-left: 49px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-dialog-title {
|
||||
font-size: 26px;
|
||||
line-height: 30px;
|
||||
font-weight: 300;
|
||||
margin: 0;
|
||||
color: #fff;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-dialog-titlebar-close {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
background: none;
|
||||
right: 15px;
|
||||
/* LTR */
|
||||
top: 15px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
[dir="rtl"] .ui-dialog .ui-dialog-titlebar-close {
|
||||
right: auto;
|
||||
left: 15px;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-icon.ui-icon-closethick {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
opacity: 0.8;
|
||||
margin: 0;
|
||||
background: none;
|
||||
-webkit-transition: all 0.2s;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-icon.ui-icon-closethick:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-icon.ui-icon-closethick:before,
|
||||
.ui-dialog .ui-icon.ui-icon-closethick:after {
|
||||
position: absolute;
|
||||
left: 14px;
|
||||
top: 4px;
|
||||
content: ' ';
|
||||
height: 22px;
|
||||
width: 2px;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-icon.ui-icon-closethick:before {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.ui-dialog .ui-icon.ui-icon-closethick:after {
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
|
||||
.ui-dialog .ui-widget-content.ui-dialog-content {
|
||||
background: #fff;
|
||||
overflow: auto;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.views-ui-dialog .ui-widget-content.ui-dialog-content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-widget-content.ui-dialog-buttonpane,
|
||||
#media-entity-browser-modal {
|
||||
background: #f5f5f5;
|
||||
margin: 0;
|
||||
padding: 15px 20px;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
float: none;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
right: 0;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-dialog-buttonpane .ui-button-text-only .ui-button-text {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-dialog-content {
|
||||
position: static;
|
||||
}
|
||||
|
||||
/* Form action buttons are moved in dialogs. Remove empty space. */
|
||||
.ui-dialog .ui-dialog-content .form-actions {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ui-dialog .ajax-progress-throbber {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
.ui-dialog .ajax-progress-throbber .throbber {
|
||||
border-top: 5px solid rgba(0, 128, 255, 0.3);
|
||||
border-right: 5px solid rgba(0, 128, 255, 0.3);
|
||||
border-bottom: 5px solid rgba(0, 128, 255, 0.3);
|
||||
border-left: 5px solid #0678be;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.ui-dialog .ajax-progress-throbber .message {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ui-dialog .form-item-settings-label {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.ui-dialog .field-suffix {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ui-dialog .field-suffix br {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.ui-dialog table {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ui-dialog fieldset:not(.fieldgroup) {
|
||||
background: none;
|
||||
padding: 55px 0 0 0;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-tabs .ui-tabs-panel {
|
||||
padding: 20px 20px 0 20px;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-tabs .ui-tabs-nav {
|
||||
border-bottom: 0;
|
||||
padding: 0;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
||||
margin: 0;
|
||||
padding-bottom: 0;
|
||||
background: white;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-tabs .ui-tabs-nav li.ui-tabs-active a:hover {
|
||||
background: white;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-tabs .ui-tabs-nav li {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-tabs .ui-tabs-nav li a {
|
||||
padding: 10px 20px;
|
||||
line-height: 1.8;
|
||||
display: flex;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-tabs .ui-tabs-nav li a:hover {
|
||||
background: #f9f9f9;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.ui-dialog .ui-tabs .ui-tabs-nav li.ui-tabs-active:hover,
|
||||
.ui-dialog .ui-tabs .ui-tabs-nav li:hover {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.ui-dialog .form-wrapper {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 640px) {
|
||||
.ui-dialog .form-wrapper {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
.ui-dialog table .form-type-checkbox {
|
||||
display: inline-flex;
|
||||
}
|
||||
@@ -0,0 +1,248 @@
|
||||
/**
|
||||
* @file
|
||||
* Styling dropbuttons.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Reset styling for all elements.
|
||||
*/
|
||||
.js .dropbutton .dropbutton-action > input,
|
||||
.js .dropbutton .dropbutton-action > a,
|
||||
.js .dropbutton .dropbutton-action > button {
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-weight: 600;
|
||||
line-height: 12px;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
text-align: left; /* LTR */
|
||||
font-size: 12px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
[dir="rtl"].js .dropbutton .dropbutton-action > input,
|
||||
[dir="rtl"].js .dropbutton .dropbutton-action > a,
|
||||
[dir="rtl"].js .dropbutton .dropbutton-action > button {
|
||||
text-align: right;
|
||||
margin-left: 0; /* This is required to win over specificity of [dir="rtl"] .dropbutton-multiple .dropbutton .dropbutton-action > * */
|
||||
}
|
||||
|
||||
/**
|
||||
* Overwrite Mediterans button styling.
|
||||
*/
|
||||
.js .dropbutton-widget .button {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.js .dropbutton-multiple .dropbutton {
|
||||
border-right: 0; /* LTR */
|
||||
}
|
||||
[dir="rtl"].js .dropbutton-multiple .dropbutton {
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Show dropbutton elements as buttons when javascript is disabled
|
||||
*/
|
||||
.dropbutton {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.dropbutton li + li {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.js .dropbutton li {
|
||||
margin-bottom: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
.js .dropbutton li + li {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 37.5625em) { /* 601px */
|
||||
.dropbutton li {
|
||||
display: inline-block;
|
||||
}
|
||||
.dropbutton li + li {
|
||||
margin-left: 1em;
|
||||
margin-top: 0;
|
||||
}
|
||||
.js .dropbutton li + li {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Copied styling for .button.
|
||||
*/
|
||||
.js .dropbutton-multiple .dropbutton-widget {
|
||||
border: 1px solid #a6a6a6;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
|
||||
.js .dropbutton-widget .dropbutton-action a,
|
||||
.js .dropbutton-widget .dropbutton-action input,
|
||||
.js .dropbutton-widget .dropbutton-action button {
|
||||
padding: 7px 20px;
|
||||
display: block;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-action a:hover,
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-action button:hover,
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-action input:hover,
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-action a:focus,
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-action button:focus,
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-action input:focus {
|
||||
background-color: white;
|
||||
z-index: 3;
|
||||
}
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-action a:active,
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-action input:active,
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-action button:active {
|
||||
text-decoration: none;
|
||||
background-color: white;
|
||||
}
|
||||
.dropbutton .secondary-action {
|
||||
border-top: 1px solid #bfbfba;
|
||||
}
|
||||
|
||||
/**
|
||||
* Rare instances when a dropbutton is actually just a button.
|
||||
*/
|
||||
.dropbutton-single .dropbutton-widget,
|
||||
.js td .dropbutton-single .dropbutton-widget {
|
||||
border: 0;
|
||||
position: static;
|
||||
display: inline-block;
|
||||
}
|
||||
.js td .dropbutton-single {
|
||||
display: inline-block;
|
||||
}
|
||||
.dropbutton-single .dropbutton-action a {
|
||||
padding: 4px 1.5em;
|
||||
border: 1px solid #a6a6a6;
|
||||
background-color: #f5f5f5;
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
-webkit-transition: all 0.1s;
|
||||
transition: all 0.1s;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
width: auto;
|
||||
}
|
||||
.dropbutton-single .dropbutton-action a:hover,
|
||||
.dropbutton-single .dropbutton-action a:focus {
|
||||
background-color: white;
|
||||
color: #1a1a1a;
|
||||
text-decoration: none;
|
||||
outline: transparent;
|
||||
}
|
||||
|
||||
.dropbutton-single .dropbutton-action a:active {
|
||||
background-color: white;
|
||||
-webkit-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
.dropbutton .dropbutton-action .ajax-progress {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
top: 0;
|
||||
right: -34px;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.dropbutton .dropbutton-action .ajax-progress-throbber .throbber {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
border-top: 3px solid rgba(0,128,255, 0.3);
|
||||
border-right: 3px solid rgba(0,128,255, 0.3);
|
||||
border-bottom: 3px solid rgba(0,128,255, 0.3);
|
||||
border-left: 3px solid #0678be;
|
||||
}
|
||||
.dropbutton-multiple .dropbutton-action .ajax-progress {
|
||||
margin-right: 0;
|
||||
}
|
||||
.dropbutton-multiple .secondary-action .ajax-progress {
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* The dropdown trigger.
|
||||
*/
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button {
|
||||
border-left: 1px solid #a6a6a6; /* LTR */
|
||||
}
|
||||
[dir="rtl"].js .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button {
|
||||
border-right: 1px solid #a6a6a6;
|
||||
border-left: 0;
|
||||
}
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:hover,
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:focus {
|
||||
background-color: white;
|
||||
color: #1a1a1a;
|
||||
text-decoration: none;
|
||||
z-index: 3;
|
||||
outline: transparent;
|
||||
}
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:active {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
.dropbutton-arrow {
|
||||
border-top-color: #333;
|
||||
right: 35%; /* LTR */
|
||||
top: 54%;
|
||||
}
|
||||
[dir="rtl"] .dropbutton-arrow {
|
||||
left: 35%;
|
||||
right: auto;
|
||||
}
|
||||
.dropbutton-multiple.open .dropbutton-arrow {
|
||||
border-bottom: 0.3333em solid #333;
|
||||
border-top-color: transparent;
|
||||
top: 0.6667em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Form edit action theming.
|
||||
* Copied styling from .button--primary.
|
||||
*/
|
||||
.js .form-actions .dropbutton .dropbutton-action > * {
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
}
|
||||
.js .form-actions .dropbutton-widget {
|
||||
border-color: #1e5c90;
|
||||
background-color: #0071b8;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.js .form-actions .dropbutton-wrapper .dropbutton-widget .dropbutton-action .button:hover,
|
||||
.js .form-actions .dropbutton-wrapper .dropbutton-widget .dropbutton-action .button:focus {
|
||||
background-color: #2369a6;
|
||||
color: #fff;
|
||||
}
|
||||
.js .form-actions .dropbutton-wrapper .dropbutton-widget .dropbutton-action .button:active {
|
||||
border-color: #144b78;
|
||||
}
|
||||
.js .form-actions .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button,
|
||||
.form-actions .dropbutton .secondary-action {
|
||||
border-color: #1e5c90;
|
||||
}
|
||||
|
||||
.js .form-actions .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:hover,
|
||||
.js .form-actions .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:focus {
|
||||
background-color: #2369a6;
|
||||
}
|
||||
.js .form-actions .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:active {
|
||||
border-color: #144b78;
|
||||
}
|
||||
.form-actions .dropbutton-arrow {
|
||||
border-top-color: #fff;
|
||||
}
|
||||
.form-actions .dropbutton-multiple.open .dropbutton-arrow {
|
||||
border-bottom: 0.3333em solid white;
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
/**
|
||||
* Entity meta settings.
|
||||
*/
|
||||
.entity-meta {
|
||||
background-color: #f5f5f5;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.entity-meta .form-item {
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
.entity-meta__header {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
.entity-meta__title {
|
||||
font-size: 18px;
|
||||
color: #0678be;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.entity-meta__last-saved.form-item {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.entity-meta details {
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-top: 1px solid #e6e4df;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.entity-meta details:first-child {
|
||||
border-top-color: #e6e4df;
|
||||
}
|
||||
.entity-meta details[open] {
|
||||
background-color: transparent;
|
||||
border-top: 1px solid #e6e4df;
|
||||
}
|
||||
|
||||
.entity-meta details > summary {
|
||||
padding: 10px 15px;
|
||||
}
|
||||
.entity-meta details .summary {
|
||||
display: none; /* Hide JS summaries. @todo Rethink summaries. */
|
||||
}
|
||||
|
||||
.entity-meta .details-wrapper {
|
||||
padding: 5px 15px;
|
||||
}
|
||||
.entity-meta .form-textarea-wrapper {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.entity-meta .label {
|
||||
margin-bottom: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.entity-meta .container-inline {
|
||||
flex-direction: column;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.entity-meta .container-inline label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.entity-meta .container-inline .form-item {
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
.entity-meta .container-inline .form-item {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 460px) {
|
||||
.entity-meta .container-inline {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.entity-meta .container-inline .form-item {
|
||||
padding-bottom: 0;
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 780px) {
|
||||
.entity-meta .container-inline {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.entity-meta .container-inline .form-item {
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1024px) {
|
||||
.entity-meta .container-inline {
|
||||
flex-direction: row;
|
||||
}
|
||||
.entity-meta .container-inline .form-item {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.entity-meta .container-inline .form-item:last-child {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.entity-meta .field--type-created {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.entity-meta legend {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.entity-meta .form-textarea,
|
||||
.entity-meta .form-text,
|
||||
.entity-meta .form-date,
|
||||
.entity-meta .form-time {
|
||||
min-width: 100%;
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
/* Field UI */
|
||||
|
||||
#field-display-overview .field-plugin-settings-edit {
|
||||
margin: 0;
|
||||
padding: 4px 10px;
|
||||
order: 1;
|
||||
}
|
||||
|
||||
#field-display-overview .field-plugin-settings-changed {
|
||||
background: #ffb;
|
||||
}
|
||||
#field-display-overview .drag {
|
||||
background: #f9f8e6;
|
||||
}
|
||||
#field-display-overview .field-plugin-settings-editing {
|
||||
background: #f7fcff;
|
||||
}
|
||||
#field-display-overview .field-plugin-settings-edit-form .form-item {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
#field-display-overview .field-plugin-settings-edit-form .form-wrapper .ajax-progress {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
#field-display-overview .field-plugin-settings-edit-form .form-submit {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
#field-display-overview .form-item-fields-field-image-settings-edit-form-settings-image-style .description {
|
||||
display: inline-block;
|
||||
margin-left: 1em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] #field-display-overview .form-item-fields-field-image-settings-edit-form-settings-image-style .description {
|
||||
margin-left: 0;
|
||||
margin-right: 1em;
|
||||
}
|
||||
@@ -0,0 +1,524 @@
|
||||
/**
|
||||
* Form elements.
|
||||
*/
|
||||
form {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
fieldset:not(.fieldgroup) {
|
||||
display: flex;
|
||||
background-color: #f5f5f5;
|
||||
border: none;
|
||||
margin: 0 0 20px 0;
|
||||
padding: 55px 20px 20px 20px;
|
||||
min-width: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
fieldset:not(.fieldgroup) .form-type-checkbox {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
fieldset:not(.fieldgroup) fieldset:not(.fieldgroup) {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
fieldset:not(.fieldgroup) .fieldset-wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/**
|
||||
* We've temporarily added this Firefox specific rule here to fix fieldset
|
||||
* widths.
|
||||
* @todo remove once this Mozilla bug is fixed.
|
||||
* See https://bugzilla.mozilla.org/show_bug.cgi?id=504622
|
||||
*/
|
||||
@-moz-document url-prefix() {
|
||||
fieldset:not(.fieldgroup) {
|
||||
display: table-cell;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
fieldset:not(.fieldgroup)>legend {
|
||||
font-size: 14px;
|
||||
color: #0678be;
|
||||
font-weight: 700;
|
||||
position: absolute;
|
||||
text-transform: uppercase;
|
||||
top: 15px;
|
||||
}
|
||||
|
||||
.fieldgroup {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* We've temporarily added this Firefox specific rule here to fix fieldset
|
||||
* widths.
|
||||
* @todo remove once this Mozilla bug is fixed.
|
||||
* See https://bugzilla.mozilla.org/show_bug.cgi?id=504622
|
||||
*/
|
||||
@-moz-document url-prefix() {
|
||||
.fieldgroup {
|
||||
display: table-cell;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
.form-item {
|
||||
margin: 0 0 20px 0;
|
||||
max-width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.form-item>.form-item {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
table .form-item {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.form-type-checkbox {
|
||||
padding: 0;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.form-type-checkbox label {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
label {
|
||||
display: table;
|
||||
margin: 0 10px 5px 0;
|
||||
padding: 0;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
label.error {
|
||||
color: #a51b00;
|
||||
}
|
||||
|
||||
label[for] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.form-actions {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.form-wrapper .form-actions {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.views-form .form-actions,
|
||||
.form--inline .form-actions {
|
||||
margin: 0 0 0 0;
|
||||
position: relative;
|
||||
width: auto;
|
||||
border: none;
|
||||
padding: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
table .form-actions {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 640px) {
|
||||
.form-actions {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.form-actions {
|
||||
padding: 20px;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
border-top: 1px solid #f5f5f5;
|
||||
width: 100%;
|
||||
z-index: 999;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.form-wrapper .form-actions {
|
||||
padding: 10px 0 0 0;
|
||||
position: relative;
|
||||
background: transparent;
|
||||
border-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.confirmation .form-actions {
|
||||
display: flex;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.form-item label.option {
|
||||
text-transform: none;
|
||||
display: inline;
|
||||
margin-left: 5px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.form-item label.option input {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.form-disabled label {
|
||||
color: #686868;
|
||||
}
|
||||
|
||||
.form-disabled input.form-text,
|
||||
.form-disabled input.form-tel,
|
||||
.form-disabled input.form-email,
|
||||
.form-disabled input.form-url,
|
||||
.form-disabled input.form-search,
|
||||
.form-disabled input.form-number,
|
||||
.form-disabled input.form-color,
|
||||
.form-disabled input.form-file,
|
||||
.form-disabled textarea.form-textarea,
|
||||
.form-disabled select.form-select {
|
||||
border-color: #d4d4d4;
|
||||
background-color: hsla(0, 0%, 0%, 0.08);
|
||||
box-shadow: none;
|
||||
color: #777;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.form-item input.error,
|
||||
.form-item textarea.error,
|
||||
.form-item select.error {
|
||||
border-width: 1px;
|
||||
border-color: #e62600;
|
||||
background-color: hsla(15, 75%, 97%, 1);
|
||||
color: #a51b00;
|
||||
}
|
||||
|
||||
.form-item input[type=checkbox]:checked.error {
|
||||
background: #0678be;
|
||||
box-shadow: inset 0 0 0 3px #fff;
|
||||
}
|
||||
|
||||
.form-item textarea.error+.cke {
|
||||
border-width: 1px;
|
||||
border-color: #e62600;
|
||||
}
|
||||
|
||||
.form-item input.error:focus,
|
||||
.form-item textarea.error:focus,
|
||||
.form-item select.error:focus {
|
||||
border-color: #e62600;
|
||||
outline: transparent;
|
||||
background-color: #fcf4f2;
|
||||
}
|
||||
|
||||
.form-required::after {
|
||||
content: '*';
|
||||
color: #e32700;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
.form-item--error-message {
|
||||
margin-top: 0.15em;
|
||||
color: #e32700;
|
||||
}
|
||||
|
||||
.fieldset-wrapper>.form-item--error-message {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.text-format-wrapper .form-item--error-message {
|
||||
border: solid #ccc;
|
||||
border-width: 0 1px;
|
||||
margin: 0;
|
||||
padding: 0.25em 0.666em 0;
|
||||
}
|
||||
|
||||
/* Filter */
|
||||
ul.tips,
|
||||
.form-wrapper .description,
|
||||
.form-item .description {
|
||||
margin: 0;
|
||||
color: #333;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
padding-top: 5px;
|
||||
}
|
||||
|
||||
.form-wrapper td.description {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
div.description {
|
||||
margin: 0;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.form-item .description.error {
|
||||
margin-top: 0;
|
||||
color: #a51b00;
|
||||
}
|
||||
|
||||
.form-item .description ul {
|
||||
margin: 0 0 0 20px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.description .token-dialog {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.token-dialog {
|
||||
display: inline-flex;
|
||||
margin: 5px 10px 20px 0;
|
||||
}
|
||||
|
||||
ul.tips li {
|
||||
margin: 0.25em 0 0.25em 1.5em;
|
||||
/* LTR */
|
||||
}
|
||||
|
||||
[dir="rtl"] ul.tips li {
|
||||
margin: 0.25em 1.5em 0.25em 0;
|
||||
}
|
||||
|
||||
table .form-type-radio,
|
||||
table .form-type-checkbox {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.form-type-radio,
|
||||
.form-type-checkbox {
|
||||
padding-left: 25px;
|
||||
}
|
||||
|
||||
[dir="rtl"] .form-type-radio,
|
||||
[dir="rtl"] .form-type-checkbox {
|
||||
padding-left: 0;
|
||||
padding-right: 25px;
|
||||
}
|
||||
|
||||
.form-type-checkbox .form-checkbox,
|
||||
.form-type-radio .form-radio,
|
||||
.form-type-checkbox .dummy-checkbox {
|
||||
margin-left: -25px;
|
||||
}
|
||||
|
||||
table .form-type-checkbox .form-checkbox,
|
||||
table .form-type-radio .form-radio,
|
||||
table .form-type-checkbox .dummy-checkbox {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.text-summary-wrapper .form-textarea-wrapper {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.text-summary {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form-autocomplete,
|
||||
.form-text,
|
||||
.form-tel,
|
||||
.form-email,
|
||||
.form-url,
|
||||
.form-search,
|
||||
.form-number,
|
||||
.form-color,
|
||||
.form-file,
|
||||
.form-date,
|
||||
.form-time,
|
||||
.form-textarea,
|
||||
.form-select {
|
||||
box-sizing: border-box;
|
||||
padding: 10px 12px;
|
||||
border: 1px solid #d1d1d1;
|
||||
color: #333;
|
||||
background: #fcfcfa;
|
||||
min-height: 40px;
|
||||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
border-radius: 0;
|
||||
min-width: 240px;
|
||||
width: 100%;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.form-select {
|
||||
cursor: pointer;
|
||||
background: #fcfcfa url(../../images/icons/787878/twistie-down.svg) no-repeat center right 10px;
|
||||
background-size: 11px;
|
||||
min-width: 280px;
|
||||
padding: 9px 28px 9px 12px;
|
||||
}
|
||||
|
||||
.form-select[multiple] {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.tabledrag-hide .form-select {
|
||||
width: 60px;
|
||||
}
|
||||
|
||||
.form-text:focus,
|
||||
.form-tel:focus,
|
||||
.form-email:focus,
|
||||
.form-url:focus,
|
||||
.form-search:focus,
|
||||
.form-number:focus,
|
||||
.form-color:focus,
|
||||
.form-file:focus,
|
||||
.form-textarea:focus,
|
||||
.form-date:focus,
|
||||
.form-time:focus,
|
||||
.form-select:focus {
|
||||
border-color: #40b6ff;
|
||||
outline: transparent;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.confirm-parent,
|
||||
.password-parent {
|
||||
overflow: visible;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.form-item-options-group-info-identifier,
|
||||
.form-item-pass .description {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.field-suffix {
|
||||
margin: 0;
|
||||
line-height: 38px;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.field-prefix {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.field-prefix span {
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
.form-item-path {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.form-item-path label::after {
|
||||
content: ':';
|
||||
margin-left: 0;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.field-weight,
|
||||
.menu-weight {
|
||||
min-width: 60px;
|
||||
width: 60px;
|
||||
}
|
||||
|
||||
.field-ui-field-storage-add-form .field-prefix .field-suffix {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 640px) {
|
||||
.form-select {
|
||||
min-width: 280px;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 640px) {
|
||||
|
||||
.form-actions input,
|
||||
.form-wrapper input[type="submit"] {
|
||||
margin-right: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form-actions input:first-child,
|
||||
.form-wrapper input[type="submit"]:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
details summary {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.password-strength {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form-item .password-suggestions {
|
||||
float: none;
|
||||
}
|
||||
|
||||
#dblog-filter-form .form-actions {
|
||||
float: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#edit-cancel {
|
||||
display: block;
|
||||
margin: 10px 0 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Exceptions */
|
||||
#diff-inline-form select,
|
||||
div.filter-options select {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
abbr.tabledrag-changed {
|
||||
border-bottom: none;
|
||||
text-decoration: none;
|
||||
margin: 0 2px;
|
||||
}
|
||||
|
||||
.form-item-config-name {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.form-item-config-name .ajax-progress {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
left: 300px;
|
||||
}
|
||||
|
||||
/* confirmation form */
|
||||
.confirmation .item-list ul {
|
||||
margin-left: 0;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
/* uninastll form */
|
||||
.system-modules-uninstall table thead tr th:nth-child(2) {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
/* In case the entity browser has it's own buttons */
|
||||
form.entity-browser-form {
|
||||
margin-bottom: 81px;
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
/**
|
||||
* @file
|
||||
* Mediteran styles for the help component.
|
||||
*/
|
||||
|
||||
.block-help {
|
||||
padding: 0;
|
||||
/* background-color: #eff9ff; */
|
||||
background-size: 16px;
|
||||
background-position: 16px 19px;
|
||||
background-repeat: no-repeat;
|
||||
/* background-image: url(../../images/icons/help_2.svg); */
|
||||
margin-bottom: 20px;
|
||||
word-wrap: break-word;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.block-help p,
|
||||
.block-help p a {
|
||||
margin: 0;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.block-help h2 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* help section */
|
||||
|
||||
.help-section ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.help-section .layout-column:nth-child(odd) ul {
|
||||
padding: 0 10px 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1200px) {
|
||||
.help-section ul {
|
||||
padding: 0 10px 0 0;
|
||||
}
|
||||
|
||||
.help-section .layout-column:last-child ul {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.help-section ul li {
|
||||
list-style: none;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.help-section ul li a {
|
||||
display: flex;
|
||||
background: #f5f5f5;
|
||||
padding: 10px 15px;
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.help-section ul li {
|
||||
font-weight: 700;
|
||||
font-size: 14px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.help-section ul li a:hover {
|
||||
background: #eff9ff;
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
/**
|
||||
* @file
|
||||
* Image upload widget.
|
||||
*
|
||||
*/
|
||||
|
||||
.image-widget {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.image-preview {
|
||||
padding: 8px 20px 20px 0;
|
||||
}
|
||||
[dir="rtl"] .image-preview {
|
||||
padding: 8px 0 20px 20px;
|
||||
}
|
||||
|
||||
.image-widget-data {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1024px) {
|
||||
.image-widget-data {
|
||||
flex-wrap: nowrap;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
|
||||
.image-widget-data .form-item {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.image-widget-data .text-field {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.image-widget-data .file,
|
||||
.image-widget-data .file-size {
|
||||
display: inline-flex;
|
||||
margin-right: 5px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.image-widget-data .file a,
|
||||
.image-widget-data .file-size {
|
||||
padding: 0;
|
||||
line-height: 18px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 640px) {
|
||||
.image-widget {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
/**
|
||||
* @file
|
||||
* Visual styles for inline forms.
|
||||
*/
|
||||
|
||||
.form--inline {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form--inline .form-item {
|
||||
float: left; /* LTR */
|
||||
margin-right: 0; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .form--inline .form-item {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* This is required to win over specificity of [dir="rtl"] .form--inline .form-item */
|
||||
[dir="rtl"] .views-filterable-options-controls .form-item {
|
||||
margin-right: 2%;
|
||||
}
|
||||
.form--inline .form-item-separator {
|
||||
margin-top: 2.3em;
|
||||
margin-right: 1em; /* LTR */
|
||||
margin-left: 0.5em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .form--inline .form-item-separator {
|
||||
margin-right: 0.5em;
|
||||
margin-left: 1em;
|
||||
}
|
||||
.form--inline .form-actions {
|
||||
display: inline-flex;
|
||||
margin-top: 0;
|
||||
margin-bottom: 20px;
|
||||
align-self: flex-start;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form--inline .form-actions .button {
|
||||
margin-top: 20px;
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form--inline .form-item-separator {
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 640px) {
|
||||
.form--inline .form-item {
|
||||
margin-right: 20px; /* LTR */
|
||||
}
|
||||
.form--inline .form-item:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
[dir="rtl"] .form--inline .form-item {
|
||||
margin-right: 0;
|
||||
margin-left: 20px;
|
||||
}
|
||||
[dir="rtl"] .form--inline .form-item:last-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
.form--inline .form-actions {
|
||||
margin-top: 30px;
|
||||
margin-bottom: 0;
|
||||
flex-direction: row;
|
||||
width: auto;
|
||||
}
|
||||
.form--inline .form-actions .button {
|
||||
margin-top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.form--inline .form-actions .button:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,818 @@
|
||||
/**
|
||||
* @file
|
||||
* Styles for jQuery UI.
|
||||
* Overrides /core/assets/vendor/jquery.ui/themes/base/theme.css.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Component containers
|
||||
*/
|
||||
.ui-widget {
|
||||
background: none;
|
||||
}
|
||||
.ui-widget-content {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.ui-menu .ui-menu-item-wrapper,
|
||||
.ui-menu .ui-menu-item-wrapper .ui-state-active {
|
||||
padding: 5px 10px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tooltip
|
||||
*/
|
||||
.ui-widget.ui-tooltip {
|
||||
background: white;
|
||||
padding: 6px 12px;
|
||||
border: 1px solid #eee;
|
||||
border-radius: 3px;
|
||||
font-size: 12px;
|
||||
max-width: 460px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Interaction states
|
||||
*/
|
||||
.ui-state-default:focus,
|
||||
.ui-state-hover:focus,
|
||||
.ui-state-focus:focus,
|
||||
.ui-state-active:focus {
|
||||
outline: transparent;
|
||||
}
|
||||
.ui-state-highlight {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Interaction cues
|
||||
*/
|
||||
|
||||
.ui-menu .ui-menu-item:hover {
|
||||
background:#f5f5f5;
|
||||
}
|
||||
|
||||
.ui-state-error,
|
||||
.ui-widget-content .ui-state-error {
|
||||
color: #fff;
|
||||
background: #e63;
|
||||
border-color: #d52;
|
||||
}
|
||||
.ui-state-disabled,
|
||||
.ui-widget-content .ui-state-disabled {
|
||||
opacity: 0.35;
|
||||
}
|
||||
.ui-priority-secondary,
|
||||
.ui-widget-content .ui-priority-secondary {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/**
|
||||
* Icons
|
||||
*/
|
||||
/* states and images */
|
||||
[dir="ltr"] .ui-icon {
|
||||
display: block;
|
||||
font-size: 0;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
overflow: hidden;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url(../../../images/icons/ui-icons-222222-256x240.png);
|
||||
}
|
||||
|
||||
.ui-state-default .ui-icon {
|
||||
background-image: url(../../../images/icons/ui-icons-888888-256x240.png);
|
||||
}
|
||||
.ui-state-hover .ui-icon,
|
||||
.ui-state-focus .ui-icon,
|
||||
.ui-state-highlight .ui-icon {
|
||||
background-image: url(../../../images/icons/ui-icons-454545-256x240.png);
|
||||
}
|
||||
.ui-state-active .ui-icon {
|
||||
background-image: url(../../../images/icons/ui-icons-800000-256x240.png);
|
||||
}
|
||||
.ui-state-error .ui-icon,
|
||||
.ui-state-error-text .ui-icon {
|
||||
background-image: url(../../../images/icons/ui-icons-ffffff-256x240.png);
|
||||
}
|
||||
.ui-widget p .ui-icon {
|
||||
margin: 2px 3px 0 0; /* LTR */
|
||||
}
|
||||
|
||||
[dir="rtl"] .ui-widget p .ui-icon {
|
||||
margin: 2px 0 0 3px;
|
||||
}
|
||||
/* positioning */
|
||||
.ui-icon-carat-1-ne {
|
||||
background-position: -16px 0;
|
||||
}
|
||||
.ui-icon-carat-1-e {
|
||||
background-position: -32px 0;
|
||||
}
|
||||
.ui-icon-carat-1-se {
|
||||
background-position: -48px 0;
|
||||
}
|
||||
.ui-icon-carat-1-s {
|
||||
background-position: -64px 0;
|
||||
}
|
||||
.ui-icon-carat-1-sw {
|
||||
background-position: -80px 0;
|
||||
}
|
||||
.ui-icon-carat-1-w {
|
||||
background-position: -96px 0;
|
||||
}
|
||||
.ui-icon-carat-1-nw {
|
||||
background-position: -112px 0;
|
||||
}
|
||||
.ui-icon-carat-2-n-s {
|
||||
background-position: -128px 0;
|
||||
}
|
||||
.ui-icon-carat-2-e-w {
|
||||
background-position: -144px 0;
|
||||
}
|
||||
.ui-icon-triangle-1-n {
|
||||
background-position: 0 -16px;
|
||||
}
|
||||
.ui-icon-triangle-1-ne {
|
||||
background-position: -16px -16px;
|
||||
}
|
||||
.ui-icon-triangle-1-e {
|
||||
background-position: -32px -16px;
|
||||
}
|
||||
.ui-icon-triangle-1-se {
|
||||
background-position: -48px -16px;
|
||||
}
|
||||
.ui-icon-triangle-1-s {
|
||||
background-position: -64px -16px;
|
||||
}
|
||||
.ui-icon-triangle-1-sw {
|
||||
background-position: -80px -16px;
|
||||
}
|
||||
.ui-icon-triangle-1-w {
|
||||
background-position: -96px -16px;
|
||||
}
|
||||
.ui-icon-triangle-1-nw {
|
||||
background-position: -112px -16px;
|
||||
}
|
||||
.ui-icon-triangle-2-n-s {
|
||||
background-position: -128px -16px;
|
||||
}
|
||||
.ui-icon-triangle-2-e-w {
|
||||
background-position: -144px -16px;
|
||||
}
|
||||
.ui-icon-arrow-1-n {
|
||||
background-position: 0 -32px;
|
||||
}
|
||||
.ui-icon-arrow-1-ne {
|
||||
background-position: -16px -32px;
|
||||
}
|
||||
.ui-icon-arrow-1-e {
|
||||
background-position: -32px -32px;
|
||||
}
|
||||
.ui-icon-arrow-1-se {
|
||||
background-position: -48px -32px;
|
||||
}
|
||||
.ui-icon-arrow-1-s {
|
||||
background-position: -64px -32px;
|
||||
}
|
||||
.ui-icon-arrow-1-sw {
|
||||
background-position: -80px -32px;
|
||||
}
|
||||
.ui-icon-arrow-1-w {
|
||||
background-position: -96px -32px;
|
||||
}
|
||||
.ui-icon-arrow-1-nw {
|
||||
background-position: -112px -32px;
|
||||
}
|
||||
.ui-icon-arrow-2-n-s {
|
||||
background-position: -128px -32px;
|
||||
}
|
||||
.ui-icon-arrow-2-ne-sw {
|
||||
background-position: -144px -32px;
|
||||
}
|
||||
.ui-icon-arrow-2-e-w {
|
||||
background-position: -160px -32px;
|
||||
}
|
||||
.ui-icon-arrow-2-se-nw {
|
||||
background-position: -176px -32px;
|
||||
}
|
||||
.ui-icon-arrowstop-1-n {
|
||||
background-position: -192px -32px;
|
||||
}
|
||||
.ui-icon-arrowstop-1-e {
|
||||
background-position: -208px -32px;
|
||||
}
|
||||
.ui-icon-arrowstop-1-s {
|
||||
background-position: -224px -32px;
|
||||
}
|
||||
.ui-icon-arrowstop-1-w {
|
||||
background-position: -240px -32px;
|
||||
}
|
||||
.ui-icon-arrowthick-1-n {
|
||||
background-position: 0 -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-1-ne {
|
||||
background-position: -16px -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-1-e {
|
||||
background-position: -32px -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-1-se {
|
||||
background-position: -48px -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-1-s {
|
||||
background-position: -64px -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-1-sw {
|
||||
background-position: -80px -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-1-w {
|
||||
background-position: -96px -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-1-nw {
|
||||
background-position: -112px -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-2-n-s {
|
||||
background-position: -128px -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-2-ne-sw {
|
||||
background-position: -144px -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-2-e-w {
|
||||
background-position: -160px -48px;
|
||||
}
|
||||
.ui-icon-arrowthick-2-se-nw {
|
||||
background-position: -176px -48px;
|
||||
}
|
||||
.ui-icon-arrowthickstop-1-n {
|
||||
background-position: -192px -48px;
|
||||
}
|
||||
.ui-icon-arrowthickstop-1-e {
|
||||
background-position: -208px -48px;
|
||||
}
|
||||
.ui-icon-arrowthickstop-1-s {
|
||||
background-position: -224px -48px;
|
||||
}
|
||||
.ui-icon-arrowthickstop-1-w {
|
||||
background-position: -240px -48px;
|
||||
}
|
||||
.ui-icon-arrowreturnthick-1-w {
|
||||
background-position: 0 -64px;
|
||||
}
|
||||
.ui-icon-arrowreturnthick-1-n {
|
||||
background-position: -16px -64px;
|
||||
}
|
||||
.ui-icon-arrowreturnthick-1-e {
|
||||
background-position: -32px -64px;
|
||||
}
|
||||
.ui-icon-arrowreturnthick-1-s {
|
||||
background-position: -48px -64px;
|
||||
}
|
||||
.ui-icon-arrowreturn-1-w {
|
||||
background-position: -64px -64px;
|
||||
}
|
||||
.ui-icon-arrowreturn-1-n {
|
||||
background-position: -80px -64px;
|
||||
}
|
||||
.ui-icon-arrowreturn-1-e {
|
||||
background-position: -96px -64px;
|
||||
}
|
||||
.ui-icon-arrowreturn-1-s {
|
||||
background-position: -112px -64px;
|
||||
}
|
||||
.ui-icon-arrowrefresh-1-w {
|
||||
background-position: -128px -64px;
|
||||
}
|
||||
.ui-icon-arrowrefresh-1-n {
|
||||
background-position: -144px -64px;
|
||||
}
|
||||
.ui-icon-arrowrefresh-1-e {
|
||||
background-position: -160px -64px;
|
||||
}
|
||||
.ui-icon-arrowrefresh-1-s {
|
||||
background-position: -176px -64px;
|
||||
}
|
||||
.ui-icon-arrow-4 {
|
||||
background-position: 0 -80px;
|
||||
}
|
||||
.ui-icon-arrow-4-diag {
|
||||
background-position: -16px -80px;
|
||||
}
|
||||
.ui-icon-extlink {
|
||||
background-position: -32px -80px;
|
||||
}
|
||||
.ui-icon-newwin {
|
||||
background-position: -48px -80px;
|
||||
}
|
||||
.ui-icon-refresh {
|
||||
background-position: -64px -80px;
|
||||
}
|
||||
.ui-icon-shuffle {
|
||||
background-position: -80px -80px;
|
||||
}
|
||||
.ui-icon-transfer-e-w {
|
||||
background-position: -96px -80px;
|
||||
}
|
||||
.ui-icon-transferthick-e-w {
|
||||
background-position: -112px -80px;
|
||||
}
|
||||
.ui-icon-folder-collapsed {
|
||||
background-position: 0 -96px;
|
||||
}
|
||||
.ui-icon-folder-open {
|
||||
background-position: -16px -96px;
|
||||
}
|
||||
.ui-icon-document {
|
||||
background-position: -32px -96px;
|
||||
}
|
||||
.ui-icon-document-b {
|
||||
background-position: -48px -96px;
|
||||
}
|
||||
.ui-icon-note {
|
||||
background-position: -64px -96px;
|
||||
}
|
||||
.ui-icon-mail-closed {
|
||||
background-position: -80px -96px;
|
||||
}
|
||||
.ui-icon-mail-open {
|
||||
background-position: -96px -96px;
|
||||
}
|
||||
.ui-icon-suitcase {
|
||||
background-position: -112px -96px;
|
||||
}
|
||||
.ui-icon-comment {
|
||||
background-position: -128px -96px;
|
||||
}
|
||||
.ui-icon-person {
|
||||
background-position: -144px -96px;
|
||||
}
|
||||
.ui-icon-print {
|
||||
background-position: -160px -96px;
|
||||
}
|
||||
.ui-icon-trash {
|
||||
background-position: -176px -96px;
|
||||
}
|
||||
.ui-icon-locked {
|
||||
background-position: -192px -96px;
|
||||
}
|
||||
.ui-icon-unlocked {
|
||||
background-position: -208px -96px;
|
||||
}
|
||||
.ui-icon-bookmark {
|
||||
background-position: -224px -96px;
|
||||
}
|
||||
.ui-icon-tag {
|
||||
background-position: -240px -96px;
|
||||
}
|
||||
.ui-icon-home {
|
||||
background-position: 0 -112px;
|
||||
}
|
||||
.ui-icon-flag {
|
||||
background-position: -16px -112px;
|
||||
}
|
||||
.ui-icon-calendar {
|
||||
background-position: -32px -112px;
|
||||
}
|
||||
.ui-icon-cart {
|
||||
background-position: -48px -112px;
|
||||
}
|
||||
.ui-icon-pencil {
|
||||
background-position: -64px -112px;
|
||||
}
|
||||
.ui-icon-clock {
|
||||
background-position: -80px -112px;
|
||||
}
|
||||
.ui-icon-disk {
|
||||
background-position: -96px -112px;
|
||||
}
|
||||
.ui-icon-calculator {
|
||||
background-position: -112px -112px;
|
||||
}
|
||||
.ui-icon-zoomin {
|
||||
background-position: -128px -112px;
|
||||
}
|
||||
.ui-icon-zoomout {
|
||||
background-position: -144px -112px;
|
||||
}
|
||||
.ui-icon-search {
|
||||
background-position: -160px -112px;
|
||||
}
|
||||
.ui-icon-wrench {
|
||||
background-position: -176px -112px;
|
||||
}
|
||||
.ui-icon-gear {
|
||||
background-position: -192px -112px;
|
||||
}
|
||||
.ui-icon-heart {
|
||||
background-position: -208px -112px;
|
||||
}
|
||||
.ui-icon-star {
|
||||
background-position: -224px -112px;
|
||||
}
|
||||
.ui-icon-link {
|
||||
background-position: -240px -112px;
|
||||
}
|
||||
.ui-icon-cancel {
|
||||
background-position: 0 -128px;
|
||||
}
|
||||
.ui-icon-plus {
|
||||
background-position: -16px -128px;
|
||||
}
|
||||
.ui-icon-plusthick {
|
||||
background-position: -32px -128px;
|
||||
}
|
||||
.ui-icon-minus {
|
||||
background-position: -48px -128px;
|
||||
}
|
||||
.ui-icon-minusthick {
|
||||
background-position: -64px -128px;
|
||||
}
|
||||
.ui-icon-close {
|
||||
background-position: -80px -128px;
|
||||
}
|
||||
.ui-icon-closethick {
|
||||
background-position: -96px -128px;
|
||||
}
|
||||
.ui-icon-key {
|
||||
background-position: -112px -128px;
|
||||
}
|
||||
.ui-icon-lightbulb {
|
||||
background-position: -128px -128px;
|
||||
}
|
||||
.ui-icon-scissors {
|
||||
background-position: -144px -128px;
|
||||
}
|
||||
.ui-icon-clipboard {
|
||||
background-position: -160px -128px;
|
||||
}
|
||||
.ui-icon-copy {
|
||||
background-position: -176px -128px;
|
||||
}
|
||||
.ui-icon-contact {
|
||||
background-position: -192px -128px;
|
||||
}
|
||||
.ui-icon-image {
|
||||
background-position: -208px -128px;
|
||||
}
|
||||
.ui-icon-video {
|
||||
background-position: -224px -128px;
|
||||
}
|
||||
.ui-icon-script {
|
||||
background-position: -240px -128px;
|
||||
}
|
||||
.ui-icon-alert {
|
||||
background-position: 0 -144px;
|
||||
}
|
||||
.ui-icon-info {
|
||||
background-position: -16px -144px;
|
||||
}
|
||||
.ui-icon-notice {
|
||||
background-position: -32px -144px;
|
||||
}
|
||||
.ui-icon-help {
|
||||
background-position: -48px -144px;
|
||||
}
|
||||
.ui-icon-check {
|
||||
background-position: -64px -144px;
|
||||
}
|
||||
.ui-icon-bullet {
|
||||
background-position: -80px -144px;
|
||||
}
|
||||
.ui-icon-radio-off {
|
||||
background-position: -96px -144px;
|
||||
}
|
||||
.ui-icon-radio-on {
|
||||
background-position: -112px -144px;
|
||||
}
|
||||
.ui-icon-pin-w {
|
||||
background-position: -128px -144px;
|
||||
}
|
||||
.ui-icon-pin-s {
|
||||
background-position: -144px -144px;
|
||||
}
|
||||
.ui-icon-play {
|
||||
background-position: 0 -160px;
|
||||
}
|
||||
.ui-icon-pause {
|
||||
background-position: -16px -160px;
|
||||
}
|
||||
.ui-icon-seek-next {
|
||||
background-position: -32px -160px;
|
||||
}
|
||||
.ui-icon-seek-prev {
|
||||
background-position: -48px -160px;
|
||||
}
|
||||
.ui-icon-seek-end {
|
||||
background-position: -64px -160px;
|
||||
}
|
||||
.ui-icon-seek-first {
|
||||
background-position: -80px -160px;
|
||||
}
|
||||
.ui-icon-stop {
|
||||
background-position: -96px -160px;
|
||||
}
|
||||
.ui-icon-eject {
|
||||
background-position: -112px -160px;
|
||||
}
|
||||
.ui-icon-volume-off {
|
||||
background-position: -128px -160px;
|
||||
}
|
||||
.ui-icon-volume-on {
|
||||
background-position: -144px -160px;
|
||||
}
|
||||
.ui-icon-power {
|
||||
background-position: 0 -176px;
|
||||
}
|
||||
.ui-icon-signal-diag {
|
||||
background-position: -16px -176px;
|
||||
}
|
||||
.ui-icon-signal {
|
||||
background-position: -32px -176px;
|
||||
}
|
||||
.ui-icon-battery-0 {
|
||||
background-position: -48px -176px;
|
||||
}
|
||||
.ui-icon-battery-1 {
|
||||
background-position: -64px -176px;
|
||||
}
|
||||
.ui-icon-battery-2 {
|
||||
background-position: -80px -176px;
|
||||
}
|
||||
.ui-icon-battery-3 {
|
||||
background-position: -96px -176px;
|
||||
}
|
||||
.ui-icon-circle-plus {
|
||||
background-position: 0 -192px;
|
||||
}
|
||||
.ui-icon-circle-minus {
|
||||
background-position: -16px -192px;
|
||||
}
|
||||
.ui-icon-circle-close {
|
||||
background-position: -32px -192px;
|
||||
}
|
||||
.ui-icon-circle-triangle-e {
|
||||
background-position: -48px -192px;
|
||||
}
|
||||
.ui-icon-circle-triangle-s {
|
||||
background-position: -64px -192px;
|
||||
}
|
||||
.ui-icon-circle-triangle-w {
|
||||
background-position: -80px -192px;
|
||||
}
|
||||
.ui-icon-circle-triangle-n {
|
||||
background-position: -96px -192px;
|
||||
}
|
||||
.ui-icon-circle-arrow-e {
|
||||
background-position: -112px -192px;
|
||||
}
|
||||
.ui-icon-circle-arrow-s {
|
||||
background-position: -128px -192px;
|
||||
}
|
||||
.ui-icon-circle-arrow-w {
|
||||
background-position: -144px -192px;
|
||||
}
|
||||
.ui-icon-circle-arrow-n {
|
||||
background-position: -160px -192px;
|
||||
}
|
||||
.ui-icon-circle-zoomin {
|
||||
background-position: -176px -192px;
|
||||
}
|
||||
.ui-icon-circle-zoomout {
|
||||
background-position: -192px -192px;
|
||||
}
|
||||
.ui-icon-circle-check {
|
||||
background-position: -208px -192px;
|
||||
}
|
||||
.ui-icon-circlesmall-plus {
|
||||
background-position: 0 -208px;
|
||||
}
|
||||
.ui-icon-circlesmall-minus {
|
||||
background-position: -16px -208px;
|
||||
}
|
||||
.ui-icon-circlesmall-close {
|
||||
background-position: -32px -208px;
|
||||
}
|
||||
.ui-icon-squaresmall-plus {
|
||||
background-position: -48px -208px;
|
||||
}
|
||||
.ui-icon-squaresmall-minus {
|
||||
background-position: -64px -208px;
|
||||
}
|
||||
.ui-icon-squaresmall-close {
|
||||
background-position: -80px -208px;
|
||||
}
|
||||
.ui-icon-grip-dotted-vertical {
|
||||
background-position: 0 -224px;
|
||||
}
|
||||
.ui-icon-grip-dotted-horizontal {
|
||||
background-position: -16px -224px;
|
||||
}
|
||||
.ui-icon-grip-solid-vertical {
|
||||
background-position: -32px -224px;
|
||||
}
|
||||
.ui-icon-grip-solid-horizontal {
|
||||
background-position: -48px -224px;
|
||||
}
|
||||
.ui-icon-gripsmall-diagonal-se {
|
||||
background-position: -64px -224px;
|
||||
}
|
||||
.ui-icon-grip-diagonal-se {
|
||||
background-position: -80px -224px;
|
||||
}
|
||||
.ui-icon-carat-1-n {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Accordion
|
||||
*/
|
||||
.ui-accordion {
|
||||
border: none;
|
||||
}
|
||||
.ui-accordion .ui-accordion-header {
|
||||
border: solid 1px #ccc;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.ui-accordion h3.ui-accordion-header,
|
||||
#block-system-main h3.ui-accordion-header {
|
||||
font-size: 1.1em;
|
||||
margin: 10px 0;
|
||||
}
|
||||
#block-system-main .ui-accordion h3.ui-state-active,
|
||||
.ui-accordion h3.ui-state-active {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.ui-accordion .ui-accordion-header a {
|
||||
display: block;
|
||||
}
|
||||
.ui-accordion .ui-accordion-content {
|
||||
padding: 1em 2.2em;
|
||||
border: solid 1px #ccc;
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tabs
|
||||
*/
|
||||
.ui-tabs {
|
||||
padding: 0;
|
||||
}
|
||||
.ui-tabs .ui-tabs-nav {
|
||||
padding: 5px 10px 4px;
|
||||
margin: 0;
|
||||
line-height: 20px;
|
||||
border-bottom: solid 1px #ccc;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
.ui-tabs .ui-tabs-nav li {
|
||||
padding: 0 1em 0 10px; /* LTR */
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
}
|
||||
[dir="rtl"] .ui-tabs .ui-tabs-nav li {
|
||||
padding: 0 10px 0 1em;
|
||||
}
|
||||
.ui-tabs .ui-tabs-nav li a {
|
||||
float: none;
|
||||
padding: 0 10px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.ui-tabs .ui-tabs-nav .ui-tabs-selected a {
|
||||
color: #fff;
|
||||
background: #666;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* Overlays
|
||||
*/
|
||||
|
||||
.ui-widget-overlay {
|
||||
background-color: rgba(0,0,0, 0.7);
|
||||
animation: fade 0.4s;
|
||||
z-index: 1260;
|
||||
}
|
||||
|
||||
@keyframes fade {
|
||||
0% {
|
||||
background-color: rgba(0,0,0, 0);
|
||||
}
|
||||
100% {
|
||||
background-color: rgba(0,0,0, 0.7);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Slider
|
||||
*/
|
||||
.ui-slider {
|
||||
border: solid 1px #ccc;
|
||||
}
|
||||
.ui-slider .ui-slider-range {
|
||||
background: #e4e4e4;
|
||||
}
|
||||
.ui-slider .ui-slider-handle {
|
||||
border: 1px solid #e4e4e4;
|
||||
border-bottom: 1px solid #b4b4b4;
|
||||
border-left-color: #d2d2d2;
|
||||
border-right-color: #d2d2d2;
|
||||
background-color: #e4e4e4;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.ui-slider a.ui-state-active,
|
||||
.ui-slider .ui-slider-handle:active {
|
||||
background: #666;
|
||||
color: #fff;
|
||||
border: solid 1px #555;
|
||||
}
|
||||
|
||||
/**
|
||||
* Progress Bar
|
||||
*/
|
||||
.ui-progressbar {
|
||||
background: #e4e4e4;
|
||||
height: 1.4em;
|
||||
}
|
||||
.ui-progressbar .ui-progressbar-value {
|
||||
background: #0072b9;
|
||||
height: 1.5em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Date Picker
|
||||
*/
|
||||
.ui-datepicker {
|
||||
border: 1px solid #a6a6a6;
|
||||
background: #fff;
|
||||
/* Override datepicker.css */
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Override tables.css */
|
||||
.ui-datepicker-calendar thead tr {
|
||||
border-bottom: 1px solid #a6a6a6;
|
||||
border-top: 1px solid #a6a6a6;
|
||||
}
|
||||
.ui-datepicker-calendar tr:hover {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* Override datepicker.css */
|
||||
.ui-datepicker td {
|
||||
padding: 0;
|
||||
}
|
||||
.ui-datepicker td span,
|
||||
.ui-datepicker td a {
|
||||
color: inherit;
|
||||
/* Override datepicker.css */
|
||||
text-align: center;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-header .ui-datepicker-next-hover {
|
||||
cursor: pointer;
|
||||
/* Override datepicker.css - keep icons still on hover */
|
||||
right: 2px;
|
||||
top: 2px;
|
||||
}
|
||||
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover {
|
||||
cursor: pointer;
|
||||
/* Override datepicker.css - keep icons still on hover */
|
||||
left: 2px;
|
||||
top: 2px;
|
||||
}
|
||||
.ui-datepicker td a.ui-state-hover {
|
||||
background-color: #f7fcff;
|
||||
}
|
||||
.ui-datepicker .ui-state-active {
|
||||
background: #ebeae4;
|
||||
border: none;
|
||||
}
|
||||
.ui-datepicker .ui-state-highlight {
|
||||
font-weight: bold;
|
||||
/* Override datepicker.css */
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Autocomplete
|
||||
*/
|
||||
.ui-autocomplete {
|
||||
background: #fff;
|
||||
border: 1px solid #ccc;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
max-height: 50%;
|
||||
}
|
||||
|
||||
/* Suggestion list */
|
||||
.ui-autocomplete .ui-menu-item.ui-state-focus,
|
||||
.autocomplete .ui-menu-item.ui-state-hover {
|
||||
background: #0072b9;
|
||||
margin: 0;
|
||||
}
|
||||
.ui-autocomplete .ui-state-focus a,
|
||||
.autocomplete .ui-state-hover a {
|
||||
color: #fff;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
.media-form .field--name-status {
|
||||
margin-top: 1.5em;
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
/**
|
||||
* Menus and lists.
|
||||
*/
|
||||
.item-list ul {
|
||||
list-style-type: disc;
|
||||
list-style-image: none;
|
||||
margin: 0.25em 0 0.25em 1.5em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .item-list ul {
|
||||
margin: 0.25em 1.5em 0.25em 0;
|
||||
}
|
||||
.item-list ul li,
|
||||
.menu-item {
|
||||
list-style-type: disc;
|
||||
list-style-image: none;
|
||||
}
|
||||
.menu-item {
|
||||
margin: 0;
|
||||
}
|
||||
.item-list ul .collapsed,
|
||||
.menu-item--collapsed {
|
||||
list-style-image: url(../../images/icons/arrow_right_small.svg);
|
||||
list-style-type: disc;
|
||||
}
|
||||
.item-list ul .expanded,
|
||||
.menu-item--expanded {
|
||||
list-style-image: url(../../images/icons/arrow_right_small.svg);
|
||||
list-style-type: circle;
|
||||
}
|
||||
ul.links li,
|
||||
ul.inline li {
|
||||
padding-right: 1em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] ul.links li,
|
||||
[dir="rtl"] ul.inline li {
|
||||
padding-left: 1em;
|
||||
padding-right: 0;
|
||||
}
|
||||
ul.inline li {
|
||||
display: inline;
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
/**
|
||||
* Messages.
|
||||
*/
|
||||
.messages {
|
||||
margin: 0 0 20px 0;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
background-size: 16px;
|
||||
background-position: 16px 19px;
|
||||
background-repeat: no-repeat;
|
||||
padding: 15px 20px 15px 46px;
|
||||
line-height: 1.8;
|
||||
word-wrap: break-word;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.messages a {
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.messages--error {
|
||||
border-color: #e32700;
|
||||
color: #e32700;
|
||||
background-color: #ffefef;
|
||||
background-image: url(../../images/icons/error.svg);
|
||||
}
|
||||
|
||||
.messages--error a {
|
||||
color: #e32700;
|
||||
}
|
||||
|
||||
.messages--warning {
|
||||
border-color: #e29700;
|
||||
color: #e29700;
|
||||
background-color: #f9f8e6;
|
||||
background-image: url(../../images/icons/warning.svg);
|
||||
}
|
||||
|
||||
.messages--warning a {
|
||||
color: #e29700;
|
||||
}
|
||||
|
||||
.messages--status {
|
||||
border-color: #2fb419;
|
||||
color: #2fb419;
|
||||
background-color: #e8f9e6;
|
||||
background-image: url(../../images/icons/check.svg);
|
||||
}
|
||||
|
||||
.messages--status a {
|
||||
color: #2fb419;
|
||||
}
|
||||
|
||||
.messages h2 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.messages ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
/* Modules page */
|
||||
.system-modules fieldset {
|
||||
border: 0;
|
||||
border-top: 1px solid #ccc;
|
||||
}
|
||||
.system-modules details {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.system-modules summary {
|
||||
border-bottom: 1px solid #f5f5f5;
|
||||
padding: 20px 0;
|
||||
line-height: 1;
|
||||
}
|
||||
.system-modules [open] summary {
|
||||
border-bottom: none;
|
||||
}
|
||||
.system-modules .details-wrapper {
|
||||
padding: 0 0 0.5em 0;
|
||||
}
|
||||
.system-modules .fieldset-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
.system-modules table,
|
||||
.locale-translation-status-form table {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.system-modules tr.even,
|
||||
.system-modules tr.odd,
|
||||
.locale-translation-status-form tr.even,
|
||||
.locale-translation-status-form tr.odd {
|
||||
background: #f5f5f5;
|
||||
border: 0;
|
||||
border-bottom: 10px solid #fff;
|
||||
}
|
||||
.system-modules tr td:last-child,
|
||||
.locale-translation-status-form tr td:last-child {
|
||||
border: 0;
|
||||
}
|
||||
.system-modules table th,
|
||||
.locale-translation-status-form table th {
|
||||
border: 0;
|
||||
border-bottom: 10px solid #fff;
|
||||
}
|
||||
.system-modules .sticky-header th,
|
||||
.locale-translation-status-form .sticky-header th {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.system-modules .form-actions {
|
||||
margin-top: 20px;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
.node__submitted {
|
||||
margin: 1em 0;
|
||||
}
|
||||
@@ -0,0 +1,114 @@
|
||||
/**
|
||||
* @file
|
||||
* CSS for off-canvas dialog.
|
||||
*/
|
||||
|
||||
.ui-dialog-off-canvas {
|
||||
border-left: 1px solid #e6e4df;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .ui-widget-content.ui-dialog-content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .ui-tabs .ui-tabs-panel {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .ui-tabs .ui-tabs-nav {
|
||||
border-bottom: 0;
|
||||
padding: 0;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
||||
margin: 0;
|
||||
padding-bottom: 0;
|
||||
background: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .ui-tabs .ui-tabs-nav li.ui-tabs-active a:hover {
|
||||
background: white;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .ui-tabs .ui-tabs-nav li {
|
||||
padding: 0;
|
||||
border: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .ui-tabs .ui-tabs-nav li a {
|
||||
padding: 10px 20px;
|
||||
line-height: 1.8;
|
||||
display: flex;
|
||||
}
|
||||
.ui-dialog-off-canvas .ui-tabs .ui-tabs-nav li a:hover {
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas fieldset:not(.fieldgroup) {
|
||||
background: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas details fieldset:not(.fieldgroup) {
|
||||
padding: 55px 0 0 0;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .ui-dialog-content .form-actions {
|
||||
padding: 20px;
|
||||
position: relative;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas details {
|
||||
margin: 0 0 5px 0;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas table,
|
||||
.ui-dialog-off-canvas .form-wrapper {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .form-wrapper {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .form-wrapper:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.ui-dialog-content .container-inline .form-item {
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
@media screen and (min-width: 640px) {
|
||||
.ui-dialog-off-canvas .form-wrapper {
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .form-item,
|
||||
.ui-dialog-content .container-inline .form-item,
|
||||
.ui-dialog-off-canvas .button.button--small {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .details-wrapper .form-item,
|
||||
.ui-dialog-off-canvas fieldset .form-item {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.ui-dialog-content .container-inline .form-item:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .button {
|
||||
margin-left: 0;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.ui-dialog-off-canvas .button:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* @file
|
||||
* Page title.
|
||||
*/
|
||||
.page-title {
|
||||
display: inline-block;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
/**
|
||||
* @file
|
||||
* Styles for Mediteran's Pagination.
|
||||
*/
|
||||
|
||||
nav.pager {
|
||||
margin-top: 40px;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid #e6e4df;
|
||||
}
|
||||
|
||||
.pager__items {
|
||||
margin: 20px 0 0 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.pager__item {
|
||||
display: inline-flex;
|
||||
font-size: 12px;
|
||||
margin: 0 10px 10px 0;
|
||||
padding: 0;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.pager__item a,
|
||||
.pager__item.is-active {
|
||||
line-height: 14px;
|
||||
padding: 5px 10px;
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
background-color: #f5f5f5;
|
||||
border: 1px solid #b8b8b8;
|
||||
color: #333;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
.pager__item.is-active a,
|
||||
.pager__item.is-active {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.pager__item.is-active a {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.pager__item a:hover,
|
||||
.pager__item a:focus {
|
||||
border-color: #0678be;
|
||||
color: #0678be;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.pager__items {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* @file
|
||||
* Panel styling. Panels are used to visually group items together.
|
||||
*/
|
||||
|
||||
.panel {
|
||||
margin: 0 0 20px;
|
||||
padding: 0;
|
||||
}
|
||||
.panel__title {
|
||||
font-size: 14px;
|
||||
line-height: 1;
|
||||
text-transform: uppercase;
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
.panel .admin-list li:nth-child(1) a,
|
||||
.panel .admin-list li:nth-child(2) a {
|
||||
border-top: none;
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
/**
|
||||
* @file
|
||||
* Visual styles for progress bar.
|
||||
*
|
||||
* @see progress.js
|
||||
*/
|
||||
|
||||
.progress__track {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
.progress__bar {
|
||||
background: #057ec9;
|
||||
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15)), -webkit-linear-gradient(left top, #008ce3 0%, #008ce3 25%, #0678be 25%, #0678be 50%, #008ce3 50%, #008ce3 75%, #008ce3 100%);
|
||||
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15)), linear-gradient(to right bottom, #008ce3 0%, #008ce3 25%, #0678be 25%, #0678be 50%, #008ce3 50%, #008ce3 75%, #008ce3 100%);
|
||||
background-size: 40px 40px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 16px;
|
||||
animation: animate-stripes 3s linear infinite;
|
||||
-webkit-animation: animate-stripes 3s linear infinite;
|
||||
-moz-animation: animate-stripes 3s linear infinite;
|
||||
-webkit-transition: width 0.5s ease-out;
|
||||
transition: width 0.5s ease-out;
|
||||
}
|
||||
[dir="rtl"] .progress__bar {
|
||||
animation-direction: reverse;
|
||||
-webkit-animation-direction: reverse;
|
||||
-moz-animation-direction: reverse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Progress bar animations.
|
||||
*/
|
||||
@-webkit-keyframes animate-stripes {
|
||||
0% {
|
||||
background-position: 0 0, 0 0;
|
||||
}
|
||||
100% {
|
||||
background-position: 0 0, -80px 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-ms-keyframes animate-stripes {
|
||||
0% {
|
||||
background-position: 0 0, 0 0;
|
||||
}
|
||||
100% {
|
||||
background-position: 0 0, -80px 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes animate-stripes {
|
||||
0% {
|
||||
background-position: 0 0, 0 0;
|
||||
}
|
||||
100% {
|
||||
background-position: 0 0, -80px 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
/**
|
||||
* @file
|
||||
* Override Quick Edit's entity toolbar style on the Drupal front-end.
|
||||
*
|
||||
* I.e. loaded by Quick Edit on the front-end, despite this being a back-end theme.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The Mediteran style guide prescribes softer corners.
|
||||
*/
|
||||
.quickedit-toolbar-container > .quickedit-toolbar-content,
|
||||
.quickedit-toolbar-container > .quickedit-toolbar-lining {
|
||||
border-radius: 4px;
|
||||
}
|
||||
.quickedit-button {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Entity toolbar's "save" button must be styled like a Mediteran primary button.
|
||||
*/
|
||||
.quickedit-button.action-save,
|
||||
.quickedit-button.action-saving {
|
||||
border-color: #1e5c90;
|
||||
background-image: -webkit-linear-gradient(top, #007bc6, #0071b8);
|
||||
background-image: linear-gradient(to bottom, #007bc6, #0071b8);
|
||||
color: #fff;
|
||||
text-shadow: 0 1px hsla(0, 0%, 0%, 0.5);
|
||||
font-weight: 700;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.quickedit-button.action-save:hover,
|
||||
.quickedit-button.action-save:focus,
|
||||
.quickedit-button.action-saving:hover,
|
||||
.quickedit-button.action-saving:focus {
|
||||
background-color: #2369a6;
|
||||
background-image: -webkit-linear-gradient(top, #0c97ed, #1f86c7);
|
||||
background-image: linear-gradient(to bottom, #0c97ed, #1f86c7);
|
||||
border-color: #1e5c90;
|
||||
color: #fff;
|
||||
}
|
||||
.quickedit-button.action-save:hover,
|
||||
.quickedit-button.action-save:focus,
|
||||
.quickedit-button.action-saving:hover,
|
||||
.quickedit-button.action-saving:focus {
|
||||
box-shadow: 0 1px 2px hsla(203, 10%, 10%, 0.25);
|
||||
}
|
||||
.quickedit-button.action-save:active,
|
||||
.quickedit-button.action-saving:active {
|
||||
background-image: -webkit-linear-gradient(top, #08639b, #0071b8);
|
||||
background-image: linear-gradient(to bottom, #08639b, #0071b8);
|
||||
border-color: #144b78;
|
||||
box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.2);
|
||||
}
|
||||
|
||||
/**
|
||||
* The entity toolbar's "save" button's top margin shifts both buttons 2px down,
|
||||
* so we must compensate for that to achieve vertically centered positioning.
|
||||
*/
|
||||
.quickedit .icon-close:before {
|
||||
top: 8px;
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
/**
|
||||
* @file
|
||||
* Styles for administration pages.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Add search page select/submit.
|
||||
*/
|
||||
.search-admin-settings .container-inline {
|
||||
margin-bottom: 1em;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.search-admin-settings label[for="edit-search-type"] {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.search-admin-settings .container-inline .button {
|
||||
margin-left: 0;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.search-admin-settings .form-item-search-type {
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.search-admin-settings .form-item-search-type label {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 640px) {
|
||||
.search-admin-settings .container-inline {
|
||||
flex-direction: row;
|
||||
}
|
||||
.search-admin-settings .container-inline .button {
|
||||
margin-left: 20px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.search-admin-settings .form-item-search-type {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* @file
|
||||
* Skip link
|
||||
*
|
||||
* Allows keyboard users to quickly skip to the main content of the page.
|
||||
*/
|
||||
|
||||
.skip-link {
|
||||
left: 50%;
|
||||
-webkit-transform: translateX(-50%);
|
||||
-ms-transform: translateX(-50%);
|
||||
transform: translateX(-50%);
|
||||
z-index: 50;
|
||||
background: #444;
|
||||
color: #fff;
|
||||
font-size: 0.94em;
|
||||
padding: 1px 10px 2px;
|
||||
border-radius: 0 0 10px 10px;
|
||||
}
|
||||
.skip-link:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
.skip-link.visually-hidden.focusable:focus {
|
||||
position: absolute;
|
||||
}
|
||||
@@ -0,0 +1,251 @@
|
||||
/**
|
||||
* @file
|
||||
* Mediteran styles for the System Status Report.
|
||||
*/
|
||||
|
||||
.system-status-report__requirements-group {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.system-status-report__requirements-group .color-warning,
|
||||
.system-status-report__requirements-group .color-error,
|
||||
.system-status-report__requirements-group .color-success,
|
||||
.system-status-report__requirements-group .color-checked {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.system-status-report__requirements-group dl dd::before {
|
||||
content: '•';
|
||||
margin-right: 10px;
|
||||
margin-left: -15px;
|
||||
}
|
||||
.system-status-report__entry {
|
||||
border: 0;
|
||||
margin: 0 0 20px 0;
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
.system-status-report__entry:last-of-type {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.system-status-report__entry--error {
|
||||
background-color: transparent;
|
||||
}
|
||||
.system-status-report__entry--warning {
|
||||
background-color: transparent;
|
||||
}
|
||||
.system-status-report__entry--error strong,
|
||||
.system-status-report__entry--error a {
|
||||
color: #e32700;
|
||||
font-weight: 700;
|
||||
}
|
||||
.system-status-report__entry--warning strong,
|
||||
.system-status-report__entry--warning a {
|
||||
color: #e29700;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.system-status-report__entry--checked strong,
|
||||
.system-status-report__entry--checked a {
|
||||
color: #73b355;
|
||||
font-weight: 700;
|
||||
}
|
||||
/* Account for native and poly-filled details element */
|
||||
.system-status-report__status-title {
|
||||
position: relative;
|
||||
padding: 1em 2em 1em 3em; /* LTR */
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
font-weight: bold;
|
||||
}
|
||||
.system-status-report__status-title .details-title {
|
||||
color: inherit;
|
||||
text-transform: none;
|
||||
}
|
||||
.system-status-report__status-title .details-title {
|
||||
padding-left: 3em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .system-status-report__status-title .details-title {
|
||||
padding-right: 3em;
|
||||
padding-left: 0;
|
||||
}
|
||||
[dir="rtl"].details .system-status-report__status-title {
|
||||
padding: 1em 3em 1em 2em;
|
||||
}
|
||||
.collapse-processed > .system-status-report__status-title:before {
|
||||
float: right; /* LTR */
|
||||
}
|
||||
.system-status-report__status-title::-webkit-details-marker {
|
||||
float: right; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .collapse-processed > .system-status-report__status-title:before {
|
||||
float: left;
|
||||
}
|
||||
[dir="rtl"] .system-status-report__status-title::-webkit-details-marker {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.system-status-report__entry__value .description {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.system-status-report__entry__value .description ul {
|
||||
margin: 0 0 0 20px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.system-status-report__status-title {
|
||||
color: #73b355;
|
||||
}
|
||||
|
||||
.system-status-report__status-icon--warning {
|
||||
color: #e29700;
|
||||
}
|
||||
|
||||
.system-status-report__status-icon--error {
|
||||
color: #e32700;
|
||||
}
|
||||
|
||||
/* Make poly-filled details and summary elements behave correctly. */
|
||||
.system-status-report summary:first-child ~ * {
|
||||
display: none;
|
||||
}
|
||||
.system-status-report details[open] > *,
|
||||
.system-status-report details > summary:first-child {
|
||||
display: list-item;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.system-status-report details summary::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
@media screen and (max-width: 768px) {
|
||||
.system-status-report summary:after {
|
||||
content: '';
|
||||
border-style: solid;
|
||||
border-width: 7px 5px 0 5px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
position: absolute;
|
||||
top: 24px;
|
||||
right: 16px;
|
||||
}
|
||||
|
||||
.system-status-report details[open] summary:after {
|
||||
content: '';
|
||||
border-width: 0 5px 7px 5px;
|
||||
}
|
||||
|
||||
.system-status-report .color-error summary::after {
|
||||
border-color: #e32700 transparent transparent transparent;
|
||||
}
|
||||
|
||||
.system-status-report .color-error[open] summary::after {
|
||||
border-color: transparent transparent #e32700 transparent;
|
||||
}
|
||||
|
||||
.system-status-report .color-warning summary::after {
|
||||
border-color: #e29700 transparent transparent transparent;
|
||||
}
|
||||
|
||||
.system-status-report .color-warning[open] summary::after {
|
||||
border-color: transparent transparent #e29700 transparent;
|
||||
}
|
||||
.system-status-report .color-checked summary::after {
|
||||
border-color: #73b355 transparent transparent transparent;
|
||||
}
|
||||
|
||||
.system-status-report .color-checked[open] summary::after {
|
||||
border-color: transparent transparent #73b355 transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.system-status-report__status-title .details-title:before,
|
||||
.details .system-status-report__status-icon:before,
|
||||
.system-status-report__entry--checked .system-status-report__status-title:before {
|
||||
content: "";
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-position: top center;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
position: absolute;
|
||||
left: 15px; /* LTR */
|
||||
top: 19px;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
margin-right: 10px; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .system-status-report__status-title .details-title:before,
|
||||
[dir="rtl"] .details .system-status-report__status-title:before,
|
||||
[dir="rtl"] .system-status-report__entry--checked .system-status-report__status-title:before {
|
||||
left: auto;
|
||||
right: 15px;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.system-status-report__entry--checked .system-status-report__status-title:before {
|
||||
background-image: url(../../images/icons/check.svg);
|
||||
}
|
||||
|
||||
.system-status-report__status-icon--error .details-title:before,
|
||||
.details .system-status-report__status-icon--error:before {
|
||||
background-image: url(../../images/icons/error.svg);
|
||||
}
|
||||
.system-status-report__status-icon--warning .details-title:before,
|
||||
.details .system-status-report__status-icon--warning:before {
|
||||
background-image: url(../../images/icons/warning.svg);
|
||||
}
|
||||
|
||||
.system-status-report__entry__value {
|
||||
box-sizing: border-box;
|
||||
padding: 0 1em 1em 3em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .system-status-report__entry__value {
|
||||
padding-right: 3em;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 769px) {
|
||||
.system-status-report {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 769px) {
|
||||
.system-status-report__entry::after {
|
||||
display: table;
|
||||
content: '';
|
||||
clear: both;
|
||||
}
|
||||
.system-status-report__status-title {
|
||||
width: 18rem;
|
||||
float: left; /* LTR */
|
||||
cursor: default;
|
||||
}
|
||||
.system-status-report__status-title:hover,
|
||||
.system-status-report__status-title:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
[dir="rtl"] .system-status-report__status-title {
|
||||
float: right;
|
||||
}
|
||||
html.js .system-status-report__status-title::-webkit-details-marker {
|
||||
display: none;
|
||||
}
|
||||
.collapse-processed > .system-status-report__status-title:before {
|
||||
position: relative;
|
||||
top: 3px;
|
||||
}
|
||||
.system-status-report__entry__value {
|
||||
width: calc(100% - 23em);
|
||||
float: right;
|
||||
display: block;
|
||||
padding-left: 0; /* LTR */
|
||||
padding-top: 1em;
|
||||
}
|
||||
[dir="rtl"] .system-status-report__entry__value {
|
||||
padding-left: 0;
|
||||
padding-right: 3em;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,229 @@
|
||||
/**
|
||||
* @file
|
||||
* Mediteran styles for Tables.
|
||||
*/
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.responsive-enabled,
|
||||
.preview-section table,
|
||||
.views-table {
|
||||
display: flow-root;
|
||||
overflow-x: scroll;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1025px) {
|
||||
|
||||
form table,
|
||||
.responsive-enabled,
|
||||
.preview-section table,
|
||||
.views-table {
|
||||
display: table;
|
||||
overflow-x: auto;
|
||||
}
|
||||
}
|
||||
|
||||
caption {
|
||||
text-align: left;
|
||||
/* LTR */
|
||||
}
|
||||
|
||||
[dir="rtl"] caption {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: left;
|
||||
/* LTR */
|
||||
padding: 10px 15px;
|
||||
}
|
||||
|
||||
[dir="rtl"] th {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
thead th {
|
||||
background: #f5f5f5;
|
||||
border: none;
|
||||
color: #909090;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
thead th a {
|
||||
font-weight: 400;
|
||||
color: #0678be;
|
||||
}
|
||||
|
||||
thead th a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
thead tr {
|
||||
border: none;
|
||||
}
|
||||
|
||||
tr {
|
||||
border-bottom: 1px solid #e6e4df;
|
||||
}
|
||||
|
||||
tbody tr:first-child {
|
||||
border-top: 1px solid #e6e4df;
|
||||
}
|
||||
|
||||
tbody tr:hover,
|
||||
tbody tr:focus {
|
||||
background: #f7fcff;
|
||||
}
|
||||
|
||||
tbody tr.color-warning:hover,
|
||||
tbody tr.color-warning:focus,
|
||||
.drag tbody tr:hover,
|
||||
.drag tbody tr:focus {
|
||||
background: #fdf8ed;
|
||||
}
|
||||
|
||||
tbody tr.color-error:hover,
|
||||
tbody tr.color-error:focus {
|
||||
background: #fcf4f2;
|
||||
}
|
||||
|
||||
table.no-highlight tr.selected td {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 20px 15px;
|
||||
line-height: 1.6;
|
||||
text-align: left;
|
||||
/* LTR */
|
||||
}
|
||||
|
||||
[dir="rtl"] td {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
th>a {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
th.is-active>a {
|
||||
color: #004875;
|
||||
}
|
||||
|
||||
thead th.is-active {
|
||||
background: #fff;
|
||||
border-bottom: 1px solid white;
|
||||
border-top: 1px solid #e6e4df;
|
||||
border-left: 1px solid #e6e4df;
|
||||
border-right: 1px solid #e6e4df;
|
||||
}
|
||||
|
||||
th.is-active>a {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
th>a:hover,
|
||||
th>a:focus,
|
||||
th.is-active>a:hover,
|
||||
th.is-active>a:focus {
|
||||
color: #0678be;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
td .item-list ul {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* This is required to win over specificity of [dir="rtl"] .item-list ul */
|
||||
[dir="rtl"] td .item-list ul {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
td.is-active {
|
||||
background: none;
|
||||
}
|
||||
|
||||
td.views-field-node-bulk-form {
|
||||
width: 1px;
|
||||
min-width: 1px;
|
||||
}
|
||||
|
||||
/* Force browsers to calculate the width of a 'select all' <th> element. */
|
||||
th.select-all {
|
||||
width: 1px;
|
||||
min-width: 1px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1024px) {
|
||||
|
||||
th,
|
||||
td {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
table {
|
||||
display: table;
|
||||
overflow-x: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
|
||||
th,
|
||||
td {
|
||||
min-width: 150px;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Captions.
|
||||
*/
|
||||
.caption {
|
||||
margin-bottom: 1.2em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Responsive tables.
|
||||
*/
|
||||
@media screen and (max-width: 640px) {
|
||||
|
||||
th.priority-low,
|
||||
td.priority-low,
|
||||
th.priority-medium,
|
||||
td.priority-medium {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 920px) {
|
||||
|
||||
th.priority-low,
|
||||
td.priority-low {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
td.menu-label {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.tableresponsive-toggle {
|
||||
margin: 20px 0;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* webform element plugin */
|
||||
.webform-element-plugin th,
|
||||
.webform-element-plugin td {
|
||||
min-width: 150px;
|
||||
vertical-align: top;
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
/**
|
||||
* @file
|
||||
* Tablesort indicator styles.
|
||||
*/
|
||||
|
||||
.tablesort {
|
||||
float: right; /* LTR */
|
||||
height: 0;
|
||||
right: 0;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0;
|
||||
border-style: solid;
|
||||
}
|
||||
[dir="rtl"] .tablesort {
|
||||
float: left;
|
||||
}
|
||||
.tablesort--asc {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-width: 5px 4px 0 4px;
|
||||
}
|
||||
a:hover .tablesort--asc {
|
||||
border-color: #0678be transparent transparent transparent;
|
||||
}
|
||||
.tablesort--desc {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px;
|
||||
}
|
||||
a:hover .tablesort--desc {
|
||||
border-color: transparent transparent #0678be transparent;
|
||||
}
|
||||
@@ -0,0 +1,308 @@
|
||||
/**
|
||||
* Tab
|
||||
*
|
||||
*/
|
||||
.tabs__tab {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
width: 100%; /* 1 */
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.tabs__tab:hover,
|
||||
.tabs__tab:focus {
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
li.tabs__tab {
|
||||
display: block;
|
||||
padding: 0;
|
||||
}
|
||||
/* This is required to win over specifity of [dir="rtl"] .tabs__tab */
|
||||
[dir="rtl"] li.tabs__tab {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
li.tabs__tab a {
|
||||
display: flex;
|
||||
padding: 10px 20px; /* LTR */
|
||||
}
|
||||
|
||||
.tabs a:hover,
|
||||
.tabs a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Primary tabs */
|
||||
.tabs.primary {
|
||||
clear: both;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tabs.primary .tabs__tab .is-active {
|
||||
z-index: 15;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.tabs__trigger {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* JS dependent styling */
|
||||
|
||||
.is-collapse-enabled .tabs__tab a {
|
||||
background: white;
|
||||
}
|
||||
|
||||
.is-collapse-enabled .tabs__trigger {
|
||||
box-sizing: content-box;
|
||||
display: block;
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
right: 0; /* LTR */
|
||||
top: 0;
|
||||
left: auto; /* LTR */
|
||||
width: 25%;
|
||||
padding-right: 0;
|
||||
padding-left: 0;
|
||||
border-left: 0; /* LTR */
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 16px;
|
||||
line-height: 45px;
|
||||
letter-spacing: 0.1em;
|
||||
text-align: center;
|
||||
color: #0678be;
|
||||
}
|
||||
.is-collapse-enabled .tabs__trigger:focus {
|
||||
outline: transparent;
|
||||
}
|
||||
[dir="rtl"] .is-collapse-enabled .tabs__trigger {
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
.is-collapse-enabled .tabs {
|
||||
padding-top: 45px;
|
||||
max-height: 0;
|
||||
}
|
||||
.tabs.is-open {
|
||||
max-height: 999em;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.is-collapse-enabled .tabs__tab.is-active {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0; /* LTR */
|
||||
width: 75%;
|
||||
border-bottom: 0;
|
||||
}
|
||||
[dir="rtl"] .is-collapse-enabled .tabs__tab.is-active {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
.is-collapse-enabled .tabs.primary a.is-active:before {
|
||||
content: none;
|
||||
}
|
||||
.is-open .tabs__tab.is-active {
|
||||
border-color: #a6a6a6;
|
||||
background-color: #fff;
|
||||
color: #004f80;
|
||||
}
|
||||
|
||||
/* Styles for the horizontal state always take priority */
|
||||
.is-horizontal .tabs {
|
||||
max-height: none;
|
||||
padding-top: 0;
|
||||
overflow: visible;
|
||||
}
|
||||
.is-horizontal .tabs__tab {
|
||||
float: left; /* LTR */
|
||||
height: auto;
|
||||
width: auto;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
border-bottom-color: #a6a6a6;
|
||||
}
|
||||
[dir="rtl"] .is-horizontal .tabs__tab {
|
||||
float: right;
|
||||
/* This is required to win over specifity of [dir="rtl"] .tabs > li */
|
||||
margin-left: 0;
|
||||
}
|
||||
.is-horizontal .tabs__tab + .tabs__tab {
|
||||
margin-left: 0; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .is-horizontal .tabs__tab + .tabs__tab {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
/* Override the states above */
|
||||
.is-horizontal .tabs__tab.is-active,
|
||||
.is-horizontal .tabs.primary .tabs__tab.is-active,
|
||||
[dir="rtl"] .is-horizontal .tabs.primary .tabs__tab.is-active {
|
||||
position: relative;
|
||||
width: auto;
|
||||
top: 0;
|
||||
border-bottom: 0;
|
||||
margin: 0;
|
||||
background: white;
|
||||
}
|
||||
.is-horizontal .tabs.primary a {
|
||||
background-image: none;
|
||||
}
|
||||
.is-horizontal .tabs__trigger {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Secondary tabs */
|
||||
.tabs.secondary {
|
||||
display: block;
|
||||
margin: 16px 0 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
.tabs.secondary .tabs__tab {
|
||||
display: block;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
-webkit-transition: border-color 0.2s, background-color 0.2s;
|
||||
transition: border-color 0.2s, background-color 0.2s;
|
||||
}
|
||||
|
||||
/* This is required to win over specificity of [dir="rtl"] .tabs.secondary .tabs__tab */
|
||||
[dir="rtl"] .views-displays .tabs.secondary li,
|
||||
[dir="rtl"] .views-displays .tabs.secondary li.is-active {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.tabs.secondary .tabs__tab.is-active {
|
||||
color: #0678be;
|
||||
border-left: 2px solid #0678be; /* LTR */
|
||||
margin-left: -2px; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .tabs.secondary .tabs__tab.is-active {
|
||||
border-left: none;
|
||||
border-right: 2px solid #0678be;
|
||||
margin-right: -2px;
|
||||
margin-left: 0;
|
||||
}
|
||||
/* This is required to win over specificity of [dir="rtl"] .tabs.secondary .tabs__tab.is-active */
|
||||
[dir="rtl"] .views-displays .tabs.secondary li.is-active {
|
||||
border: 0 none;
|
||||
padding-right: 0;
|
||||
}
|
||||
.tabs.secondary .tabs__tab:hover,
|
||||
.tabs.secondary .tabs__tab:focus {
|
||||
background: none;
|
||||
}
|
||||
|
||||
/* This is required to win over specificity of [dir="rtl"] .tabs.secondary .tabs__tab:hover */
|
||||
[dir="rtl"] .views-displays .tabs li.tabs__tab:hover {
|
||||
border: 0 none;
|
||||
padding-right: 0;
|
||||
}
|
||||
.tabs.secondary a {
|
||||
background-color: transparent;
|
||||
padding: 5px 20px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* This is required to win over specificity of [dir="rtl"] .tabs.secondary a */
|
||||
[dir="rtl"] .views-displays .tabs.secondary a {
|
||||
padding-left: 7px;
|
||||
padding-right: 7px;
|
||||
}
|
||||
.tabs.secondary .is-active a {
|
||||
color: #0678be;
|
||||
}
|
||||
|
||||
/* Styles for the horizontal state */
|
||||
.is-horizontal .tabs.secondary .tabs__tab {
|
||||
background: none;
|
||||
float: left; /* LTR */
|
||||
position: relative;
|
||||
top: 0;
|
||||
z-index: 15;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
border-bottom: 2px solid transparent;
|
||||
border-left: 1px solid transparent; /* LTR */
|
||||
border-right-color: transparent; /* LTR */
|
||||
border-top: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.is-horizontal .tabs.secondary .tabs__tab:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
/**
|
||||
* 1. This is required to win over specifity of
|
||||
* [dir="rtl"] .tabs.secondary .tabs__tab:hover,
|
||||
* [dir="rtl"] .tabs.secondary .tabs__tab:focus
|
||||
*/
|
||||
[dir="rtl"] .is-horizontal .tabs.secondary .tabs__tab {
|
||||
float: right;
|
||||
border-right: 1px solid transparent;
|
||||
border-left-color: transparent;
|
||||
padding-right: 0; /* 1 */
|
||||
}
|
||||
.is-horizontal .tabs.secondary .tabs__tab.is-active {
|
||||
border-bottom-color: #0678be;
|
||||
}
|
||||
.is-horizontal .tabs.secondary .tabs__tab:hover,
|
||||
.is-horizontal .tabs.secondary .tabs__tab:focus {
|
||||
border-bottom-color: #63a4cc;
|
||||
}
|
||||
|
||||
/* ui tabs */
|
||||
|
||||
.ui-tabs fieldset:not(.fieldgroup) {
|
||||
background-color: white;
|
||||
margin: 0 0 20px 0;
|
||||
padding: 55px 0 0 0;
|
||||
}
|
||||
|
||||
.ui-tabs .ui-tabs-panel {
|
||||
padding: 20px 0 0 0;
|
||||
}
|
||||
|
||||
.ui-tabs .ui-tabs-nav {
|
||||
border-bottom: 0;
|
||||
padding: 0;
|
||||
background: 0;
|
||||
}
|
||||
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
||||
padding-bottom: 0;
|
||||
background: none;
|
||||
border-bottom: 2px solid #0678be;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.ui-tabs .ui-tabs-nav li.ui-tabs-active:hover,
|
||||
.ui-tabs .ui-tabs-nav li:hover {
|
||||
border-bottom: 2px solid #63a4cc;
|
||||
background: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.ui-tabs .ui-tabs-nav li {
|
||||
padding: 0;
|
||||
border-radius: 0;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
border-bottom: 2px solid transparent;
|
||||
}
|
||||
|
||||
.ui-tabs .ui-tabs-nav li:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.ui-tabs .ui-tabs-nav li a {
|
||||
padding: 10px 20px;
|
||||
line-height: 1.8;
|
||||
display: flex;
|
||||
border-radius: 0;
|
||||
}
|
||||
@@ -0,0 +1,102 @@
|
||||
/**
|
||||
* @file
|
||||
* Styles for Tour theme.
|
||||
*/
|
||||
|
||||
/* Default styles for the container */
|
||||
.joyride-tip-guide {
|
||||
background: #08447a;
|
||||
color: #fff;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
/* Mobile */
|
||||
@media only screen and (max-width: 767px) {
|
||||
.joyride-tip-guide {
|
||||
border-radius: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Add a little css triangle pip, older browser just miss out on the fanciness of it. */
|
||||
.joyride-tip-guide .joyride-nub {
|
||||
border: solid 14px #08447a;
|
||||
}
|
||||
.joyride-tip-guide .joyride-nub.top {
|
||||
border-top-color: transparent;
|
||||
border-left-color: transparent;
|
||||
border-right-color: transparent;
|
||||
}
|
||||
.joyride-tip-guide .joyride-nub.bottom {
|
||||
border-bottom-color: transparent;
|
||||
border-left-color: transparent;
|
||||
border-right-color: transparent;
|
||||
}
|
||||
.joyride-tip-guide .joyride-nub.right {
|
||||
border-top-color: transparent;
|
||||
border-right-color: transparent; /* LTR */
|
||||
border-bottom-color: transparent;
|
||||
}
|
||||
[dir="rtl"] .joyride-tip-guide .joyride-nub.right {
|
||||
border-left-color: transparent;
|
||||
border-right-color: #08447a;
|
||||
}
|
||||
.joyride-tip-guide .joyride-nub.left {
|
||||
border-top-color: transparent;
|
||||
border-left-color: transparent; /* LTR */
|
||||
border-bottom-color: transparent;
|
||||
}
|
||||
[dir="rtl"] .joyride-tip-guide .joyride-nub.left {
|
||||
border-left-color: #08447a;
|
||||
border-right-color: transparent;
|
||||
}
|
||||
.joyride-tip-guide .joyride-nub.top-right {
|
||||
border-top-color: transparent;
|
||||
border-left-color: transparent;
|
||||
border-right-color: transparent;
|
||||
}
|
||||
|
||||
/* Typography */
|
||||
.joyride-tip-guide h2 {
|
||||
color: #fff;
|
||||
}
|
||||
.joyride-tip-guide p {
|
||||
line-height: 1.385em;
|
||||
}
|
||||
.joyride-tip-guide a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Button Style */
|
||||
.joyride-tip-guide .joyride-next-tip {
|
||||
margin: 0;
|
||||
}
|
||||
.joyride-timer-indicator-wrap {
|
||||
border: solid 1px rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.joyride-timer-indicator {
|
||||
background: rgba(255, 255, 255, 0.25);
|
||||
}
|
||||
|
||||
.joyride-close-tip {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
text-decoration: none;
|
||||
font-size: 1.4em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.joyride-close-tip:hover,
|
||||
.joyride-close-tip:focus {
|
||||
color: rgba(255, 255, 255, 0.9);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.joyride-modal-bg {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.joyride-expose-wrapper {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.joyride-expose-cover {
|
||||
background: transparent;
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
/**
|
||||
* @file
|
||||
* Override of misc/vertical-tabs.css.
|
||||
*/
|
||||
|
||||
.vertical-tabs {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 20px 0;
|
||||
background: #e7e7e7;
|
||||
}
|
||||
.vertical-tabs__menu {
|
||||
float: left; /* LTR */
|
||||
width: 280px;
|
||||
margin: 0 -100% -1px 0; /* LTR */
|
||||
padding: 0;
|
||||
line-height: 1;
|
||||
}
|
||||
[dir="rtl"] .vertical-tabs__menu {
|
||||
float: right;
|
||||
margin: 0 0 -1px -100%;
|
||||
}
|
||||
.vertical-tabs__menu-item {
|
||||
position: relative;
|
||||
}
|
||||
.vertical-tabs__menu-item.is-selected {
|
||||
z-index: 1;
|
||||
overflow-x: hidden;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.vertical-tabs__menu-item:focus,
|
||||
.vertical-tabs__menu-item:active {
|
||||
z-index: 2;
|
||||
}
|
||||
.vertical-tabs__menu-item a {
|
||||
display: block;
|
||||
padding: 20px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.vertical-tabs__menu-item:last-child a {
|
||||
border-bottom: 0;
|
||||
}
|
||||
.vertical-tabs__menu-item.is-selected a,
|
||||
.vertical-tabs__menu-item.is-selected a:hover,
|
||||
.vertical-tabs__menu-item a:focus {
|
||||
background: #f5f5f5;
|
||||
}
|
||||
|
||||
.vertical-tabs__menu-item a:hover {
|
||||
background: #eeeeee;
|
||||
text-decoration: none;
|
||||
}
|
||||
.vertical-tabs__menu-item a:focus {
|
||||
outline: transparent;
|
||||
}
|
||||
.vertical-tabs__menu-item a:focus .vertical-tabs__menu-item-title {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.vertical-tabs__menu-item a:active .vertical-tabs__menu-item-title,
|
||||
.vertical-tabs__menu-item.is-selected a:focus .vertical-tabs__menu-item-title {
|
||||
text-decoration: none;
|
||||
}
|
||||
.vertical-tabs__menu-item.is-selected a {
|
||||
color: #0678be;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.vertical-tabs__menu-item.is-selected a:hover,
|
||||
.vertical-tabs__menu-item.is-selected a:focus {
|
||||
color: #0678be;
|
||||
}
|
||||
[data-vertical-tabs-panes] {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
.vertical-tabs__panes {
|
||||
margin: 0 0 0 280px; /* LTR */
|
||||
padding: 5px 15px;
|
||||
}
|
||||
[dir="rtl"] .vertical-tabs__panes {
|
||||
margin: 0 280px 0 0;
|
||||
}
|
||||
.vertical-tabs__panes:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
.vertical-tabs__pane {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
.vertical-tabs__menu-item-summary {
|
||||
display: block;
|
||||
padding-top: 0.4em;
|
||||
color: #333;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.vertical-tabs__pane > summary {
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,321 @@
|
||||
/**
|
||||
* Views styling
|
||||
*/
|
||||
|
||||
/* @group Forms */
|
||||
|
||||
/**
|
||||
* Mediteran positions the summary absolutely, but does not have a way to ignore
|
||||
* details without a summary so we make one up.
|
||||
*
|
||||
* @todo Neither a fieldset without legend nor a details without summary is
|
||||
* valid HTML markup in any way. Refactor Views UI to not produce such invalid
|
||||
* markup.
|
||||
*/
|
||||
details.fieldset-no-legend {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Being extra safe here and scoping this to the add view wizard form (where
|
||||
* a layout problem occurs for the Display format details if we don't fix its
|
||||
* padding), but it's probably safe to just let it apply everywhere.
|
||||
*/
|
||||
#views-ui-add-form details details .details-wrapper {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.views-display-tab details.box-padding .details-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.views-admin input.form-submit,
|
||||
.views-ui-dialog input.form-submit,
|
||||
.views-admin a.button,
|
||||
.views-ui-dialog a.button {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
[dir="rtl"] .views-admin input.form-submit:first-child,
|
||||
[dir="rtl"] .views-ui-dialog input.form-submit:first-child,
|
||||
[dir="rtl"] .views-admin a.button:first-child,
|
||||
[dir="rtl"] .views-ui-dialog a.button:first-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.form-radios > .form-item {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.form-item-options-expose-required,
|
||||
.form-item-options-expose-label,
|
||||
.form-item-options-expose-description {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.views-admin-dependent .form-item .form-item,
|
||||
.views-admin-dependent .form-type-checkboxes,
|
||||
.views-admin-dependent .form-type-radios,
|
||||
.views-admin-dependent .form-item .form-item,
|
||||
.form-item-options-expose-required,
|
||||
.form-item-options-expose-label,
|
||||
.form-item-options-expose-description {
|
||||
margin-bottom: 6px;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.views-admin-dependent .form-type-radio,
|
||||
.views-admin-dependent .form-radios .form-item {
|
||||
margin-bottom: 2px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
/* @group Lists */
|
||||
|
||||
.views-admin ul.secondary,
|
||||
.views-admin .item-list ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.views-displays ul.secondary li a,
|
||||
.views-displays ul.secondary li.is-active a,
|
||||
.views-displays ul.secondary li.is-active a.is-active {
|
||||
padding: 6px 16px;
|
||||
line-height: 14px;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.views-displays ul.secondary li a {
|
||||
color: #0074bd;
|
||||
}
|
||||
|
||||
.views-displays ul.secondary li a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.views-displays ul.secondary li.is-active a,
|
||||
.views-displays ul.secondary li.is-active a.is-active {
|
||||
border: 1px solid #0074bd;
|
||||
}
|
||||
|
||||
.views-admin .links li {
|
||||
padding-right: 0; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .views-admin .links li {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.views-admin .button .links li {
|
||||
padding-right: 12px; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .views-admin .button .links li {
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
.views-display-top ul.secondary {
|
||||
background-color: transparent;
|
||||
float: left; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .views-display-top ul.secondary {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.views-display-top .secondary .action-list li {
|
||||
float: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Tables */
|
||||
|
||||
.views-ui-rearrange-filter-form table td,
|
||||
.views-ui-rearrange-filter-form table th {
|
||||
vertical-align: top;
|
||||
border-bottom: 1px solid #f3f3f3;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Attachment details */
|
||||
|
||||
#edit-display-settings-title {
|
||||
color: #008bcb;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Attachment details tabs
|
||||
*
|
||||
* The tabs that switch between sections
|
||||
*/
|
||||
|
||||
.views-displays .secondary {
|
||||
text-align: left; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .views-displays .secondary {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.views-admin .icon.add {
|
||||
background-position: center 2px;
|
||||
}
|
||||
|
||||
.views-displays .secondary a:hover > .icon.add {
|
||||
background-position: center 2px;
|
||||
}
|
||||
|
||||
.views-displays .secondary .open > a {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.views-displays .secondary .open > a:hover,
|
||||
.views-displays .secondary .open > a:focus {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Attachment buckets
|
||||
*
|
||||
* These are the individual "buckets," or boxes, inside the display settings area
|
||||
*/
|
||||
|
||||
.views-ui-display-tab-bucket h3 {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.views-ui-display-tab-bucket .links {
|
||||
padding: 2px 6px 4px;
|
||||
}
|
||||
|
||||
.views-ui-display-tab-bucket .links li + li {
|
||||
margin-left: 3px; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .views-ui-display-tab-bucket .links li + li {
|
||||
margin-left: 0;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Rearrange filter criteria */
|
||||
|
||||
.views-ui-rearrange-filter-form .action-links {
|
||||
float: left;
|
||||
margin: 0 0 1em;
|
||||
padding: 0;
|
||||
}
|
||||
.views-ui-rearrange-filter-form .tabledrag-toggle-weight-wrapper {
|
||||
float: right;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.views-ui-rearrange-filter-form table {
|
||||
border: medium none;
|
||||
}
|
||||
|
||||
.views-ui-rearrange-filter-form [id^="views-row"] {
|
||||
border: medium none;
|
||||
}
|
||||
|
||||
.views-ui-rearrange-filter-form tr td:last-child {
|
||||
border-right: medium none; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .views-ui-rearrange-filter-form tr td:last-child {
|
||||
border-left: medium none;
|
||||
border-right: initial;
|
||||
}
|
||||
|
||||
.views-ui-rearrange-filter-form .filter-group-operator-row {
|
||||
border-left: 1px solid transparent;
|
||||
border-right: 1px solid transparent;
|
||||
}
|
||||
|
||||
.views-ui-rearrange-filter-form tr.drag td {
|
||||
background-color: #fe7;
|
||||
}
|
||||
|
||||
.views-ui-rearrange-filter-form tr.drag-previous td {
|
||||
background-color: #ffb;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Live preview elements */
|
||||
|
||||
.views-query-info pre {
|
||||
margin-bottom: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* @group Query info table */
|
||||
|
||||
.views-query-info table {
|
||||
-webkit-border-horizontal-spacing: 1px;
|
||||
-webkit-border-vertical-spacing: 1px;
|
||||
}
|
||||
|
||||
.views-query-info table tr td:last-child {
|
||||
/* Fixes a Mediteran style that bleeds down into this table unnecessarily */
|
||||
border-right: 0 none; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .views-query-info table tr td:last-child {
|
||||
border-left: 0 none;
|
||||
border-right: initial;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Add view */
|
||||
|
||||
.form-item-page-create,
|
||||
.form-item-block-create {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Modal dialog box
|
||||
*
|
||||
* The contents of the popup dialog on the views edit form.
|
||||
*/
|
||||
|
||||
.filterable-option .form-item.form-type-checkbox {
|
||||
/* This selector is aggressive because Mediteran's reset for .form-items is aggressive. */
|
||||
padding-bottom: 4px;
|
||||
padding-left: 4px; /* LTR */
|
||||
padding-top: 4px;
|
||||
}
|
||||
[dir="rtl"] .filterable-option .form-item.form-type-checkbox {
|
||||
padding-left: 8px;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
.view-filters form {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.view-filters .form--inline .form-item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.view-filters .form--inline .form-item-permission .form-select {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 640px) {
|
||||
.view-filters .form--inline .form-item {
|
||||
width: 280px;
|
||||
}
|
||||
.view-filters .form--inline .form-item-langcode {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user