Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
46
web/core/themes/seven/css/components/admin-list.css
Normal file
46
web/core/themes/seven/css/components/admin-list.css
Normal file
|
@ -0,0 +1,46 @@
|
|||
/**
|
||||
* Admin lists.
|
||||
*/
|
||||
ul.admin-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.admin-list li {
|
||||
position: relative;
|
||||
border-top: 1px solid #bfbfbf;
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
list-style-image: none;
|
||||
padding: 0;
|
||||
}
|
||||
.admin-list.compact li {
|
||||
border: none;
|
||||
}
|
||||
.admin-list li a {
|
||||
background: url(../../../../misc/icons/bebebe/chevron-disc-right.svg) no-repeat 1px 16px; /* LTR */
|
||||
display: block;
|
||||
padding: 14px 15px 14px 25px; /* LTR */
|
||||
min-height: 0;
|
||||
}
|
||||
[dir="rtl"] .admin-list li a {
|
||||
background: url(../../../../misc/icons/bebebe/chevron-disc-left.svg) no-repeat right 16px;
|
||||
padding-right: 25px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
.admin-list.compact li a {
|
||||
background-image: none;
|
||||
padding: 2px 0;
|
||||
}
|
||||
.admin-list li a:hover,
|
||||
.admin-list li a:focus,
|
||||
.admin-list li a:active {
|
||||
text-decoration: none;
|
||||
}
|
||||
.admin-list li a .label {
|
||||
font-size: 1.0769em;
|
||||
}
|
||||
.admin-list li a:hover .label,
|
||||
.admin-list li a:focus .label,
|
||||
.admin-list li a:active .label {
|
||||
text-decoration: underline;
|
||||
}
|
9
web/core/themes/seven/css/components/breadcrumb.css
Normal file
9
web/core/themes/seven/css/components/breadcrumb.css
Normal file
|
@ -0,0 +1,9 @@
|
|||
/**
|
||||
* @file
|
||||
* Breadcrumbs.
|
||||
*/
|
||||
|
||||
.breadcrumb {
|
||||
line-height: 1em;
|
||||
padding: 20px 0 10px;
|
||||
}
|
213
web/core/themes/seven/css/components/buttons.css
Normal file
213
web/core/themes/seven/css/components/buttons.css
Normal file
|
@ -0,0 +1,213 @@
|
|||
/**
|
||||
* @file
|
||||
* Structural styles for Seven’s UI buttons
|
||||
*
|
||||
* Apply these classes to any element (<link>, <button>, <input>, etc.) that
|
||||
* should appear as a button.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Buttons.
|
||||
*
|
||||
* 1. Enable z-index on buttons.
|
||||
* 2. Normalize 'line-height'; can’t be changed from 'normal' in Firefox 4+.
|
||||
* 3. Allows full range of styling in Webkit and Gecko.
|
||||
* 4. Use px units to ensure button text is centered vertically.
|
||||
* 5. Use rems to avoid the font size cascade of ems, with a px fallback for
|
||||
* older browsers.
|
||||
* 6. Prevent fat text in WebKit.
|
||||
*
|
||||
* @todo Consider moving box-sizing into base.css under a universal selector.
|
||||
* See https://www.drupal.org/node/2124251
|
||||
*
|
||||
*/
|
||||
.button {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
position: relative; /* 1 */
|
||||
text-align: center;
|
||||
line-height: normal; /* 2 */
|
||||
cursor: pointer;
|
||||
-webkit-appearance: none; /* 3 */
|
||||
-moz-appearance: none; /* 3 */
|
||||
padding: 4px 1.5em; /* 4 */
|
||||
border: 1px solid #a6a6a6;
|
||||
border-radius: 20em;
|
||||
background-color: #f2f1eb;
|
||||
background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df);
|
||||
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
text-shadow: 0 1px hsla(0, 0%, 100%, 0.6);
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
font-size: 0.875rem; /* 5 */
|
||||
-webkit-transition: all 0.1s;
|
||||
transition: all 0.1s;
|
||||
-webkit-font-smoothing: antialiased; /* 6 */
|
||||
}
|
||||
.button:hover,
|
||||
.button:focus {
|
||||
background-color: #f9f8f6;
|
||||
background-image: -webkit-linear-gradient(top, #fcfcfa, #e9e9dd);
|
||||
background-image: linear-gradient(to bottom, #fcfcfa, #e9e9dd);
|
||||
color: #1a1a1a;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
.button:hover {
|
||||
box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.125);
|
||||
}
|
||||
|
||||
/* Prevent focus ring being covered by next siblings. */
|
||||
.button:focus {
|
||||
z-index: 10;
|
||||
border: 1px solid #3AB2FF;
|
||||
box-shadow: 0 0 0.5em 0.1em hsla(203, 100%, 60%, 0.7);
|
||||
}
|
||||
.button:active {
|
||||
border: 1px solid #a6a6a6;
|
||||
background-color: #dfdfd9;
|
||||
background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df);
|
||||
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
|
||||
box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.2);
|
||||
-webkit-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
.button--primary {
|
||||
border-color: #1e5c90;
|
||||
background-color: #0071b8;
|
||||
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;
|
||||
}
|
||||
.button--primary:hover,
|
||||
.button--primary: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;
|
||||
}
|
||||
.button--primary:focus {
|
||||
border: 1px solid #1280DF;
|
||||
}
|
||||
.button--primary:hover {
|
||||
box-shadow: 0 1px 2px hsla(203, 10%, 10%, 0.25);
|
||||
}
|
||||
.button--primary: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);
|
||||
}
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Use px units to ensure button text is centered vertically.
|
||||
*/
|
||||
.no-touchevents .button--small {
|
||||
font-size: 13px;
|
||||
font-size: 0.813rem;
|
||||
padding: 2px 1em; /* 1 */
|
||||
}
|
||||
|
||||
.button:disabled,
|
||||
.button:disabled:active,
|
||||
.button.is-disabled,
|
||||
.button.is-disabled:active {
|
||||
border-color: #d4d4d4;
|
||||
background: #ededed;
|
||||
box-shadow: none;
|
||||
color: #5c5c5c;
|
||||
font-weight: normal;
|
||||
cursor: default;
|
||||
text-shadow: 0 1px hsla(0, 0%, 100%, 0.6);
|
||||
}
|
||||
|
||||
/* 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;
|
||||
border: 0;
|
||||
background: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
color: #0074bd;
|
||||
text-decoration: none;
|
||||
}
|
||||
.link:hover,
|
||||
.link:focus {
|
||||
color: #008ee6;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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 {
|
||||
display: inline;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
background: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
color: #c72100;
|
||||
font-weight: 400;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.button--danger:hover,
|
||||
.button--danger:focus,
|
||||
.button--danger:active {
|
||||
color: #ff2a00;
|
||||
text-decoration: underline;
|
||||
text-shadow: none;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
background: none;
|
||||
}
|
||||
.button--danger:disabled,
|
||||
.button--danger.is-disabled {
|
||||
color: #737373;
|
||||
cursor: default;
|
||||
text-decoration: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
box-shadow: none;
|
||||
background: none;
|
||||
}
|
16
web/core/themes/seven/css/components/colors.css
Normal file
16
web/core/themes/seven/css/components/colors.css
Normal file
|
@ -0,0 +1,16 @@
|
|||
/**
|
||||
* Reusable colors.
|
||||
*/
|
||||
.color-success {
|
||||
color: #325e1c;
|
||||
background-color: #f3faef;
|
||||
}
|
||||
.color-warning {
|
||||
color: #734c00;
|
||||
background-color: #fdf8ed;
|
||||
}
|
||||
.color-error {
|
||||
color: #a51b00;
|
||||
background-color: #fcf4f2;
|
||||
}
|
||||
|
8
web/core/themes/seven/css/components/content-header.css
Normal file
8
web/core/themes/seven/css/components/content-header.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
* Content header.
|
||||
*/
|
||||
.content-header {
|
||||
overflow: hidden;
|
||||
background-color: #e0e0d8;
|
||||
padding: 24px 0 0;
|
||||
}
|
109
web/core/themes/seven/css/components/dialog.css
Normal file
109
web/core/themes/seven/css/components/dialog.css
Normal file
|
@ -0,0 +1,109 @@
|
|||
/**
|
||||
* Presentational styles for Drupal dialogs.
|
||||
*/
|
||||
|
||||
.ui-dialog {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
position: absolute;
|
||||
z-index: 1260;
|
||||
padding: 0;
|
||||
}
|
||||
@media all and (max-width: 48em) { /* 768px */
|
||||
.ui-dialog {
|
||||
min-width: 92%;
|
||||
max-width: 92%;
|
||||
}
|
||||
}
|
||||
.ui-dialog .ui-dialog-titlebar {
|
||||
background: #6b6b6b;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
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: 1.231em;
|
||||
font-weight: 600;
|
||||
margin: 0;
|
||||
color: #ffffff;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
.ui-dialog .ui-dialog-titlebar-close {
|
||||
border: 0;
|
||||
background: none;
|
||||
right: 20px; /* LTR */
|
||||
top: 20px;
|
||||
margin: 0;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
position: absolute;
|
||||
}
|
||||
[dir="rtl"] .ui-dialog .ui-dialog-titlebar-close {
|
||||
right: auto;
|
||||
left: 20px;
|
||||
}
|
||||
.ui-dialog .ui-icon.ui-icon-closethick {
|
||||
background: url(../../../../misc/icons/ffffff/ex.svg) 0 0 no-repeat;
|
||||
margin-top: -12px;
|
||||
}
|
||||
.ui-dialog .ui-widget-content.ui-dialog-content {
|
||||
background: #ffffff;
|
||||
overflow: auto;
|
||||
padding: 1em;
|
||||
}
|
||||
.views-ui-dialog .ui-widget-content.ui-dialog-content {
|
||||
padding: 0;
|
||||
}
|
||||
.ui-dialog .ui-widget-content.ui-dialog-buttonpane {
|
||||
background: #f5f5f2;
|
||||
/*border-top: 1px solid #bfbfbf;*/
|
||||
margin: 0;
|
||||
padding: 15px 20px;
|
||||
border-bottom-left-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
}
|
||||
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
float: none;
|
||||
}
|
||||
.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 {
|
||||
/* Can't do center:50% middle: 50%, so approximate it for a typical window size. */
|
||||
left: 49%; /* LTR */
|
||||
position: fixed;
|
||||
top: 48.5%;
|
||||
z-index: 1000;
|
||||
background-color: #232323;
|
||||
background-image: url(../../../../misc/loading-small.gif);
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
border-radius: 7px;
|
||||
height: 24px;
|
||||
opacity: 0.9;
|
||||
padding: 4px;
|
||||
width: 24px;
|
||||
}
|
||||
[dir="rtl"] .ui-dialog .ajax-progress-throbber {
|
||||
left: auto;
|
||||
right: 49%;
|
||||
}
|
||||
.ui-dialog .ajax-progress-throbber .throbber,
|
||||
.ui-dialog .ajax-progress-throbber .message {
|
||||
display: none;
|
||||
}
|
321
web/core/themes/seven/css/components/dropbutton.component.css
Normal file
321
web/core/themes/seven/css/components/dropbutton.component.css
Normal file
|
@ -0,0 +1,321 @@
|
|||
/**
|
||||
* @file
|
||||
* Styling dropbuttons.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Reset styling for all elements.
|
||||
*/
|
||||
.js .dropbutton .dropbutton-action > input,
|
||||
.js .dropbutton .dropbutton-action > a,
|
||||
.js .dropbutton .dropbutton-action > button {
|
||||
color: #333333;
|
||||
text-decoration: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-weight: 600;
|
||||
line-height: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
text-align: left; /* LTR */
|
||||
}
|
||||
[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 > * */
|
||||
}
|
||||
.js .dropbutton-action.last {
|
||||
border-radius: 0 0 0 1em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .js .dropbutton-action.last {
|
||||
border-radius: 0 0 1em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Overwrite Sevens 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;
|
||||
border-radius: 20em;
|
||||
background-color: #f2f1eb;
|
||||
background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df);
|
||||
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
|
||||
text-shadow: 0 1px hsla(0, 0%, 100%, 0.6);
|
||||
}
|
||||
.dropbutton-multiple.open .dropbutton-widget {
|
||||
border-radius: 1em;
|
||||
}
|
||||
.js .dropbutton-widget .dropbutton-action a,
|
||||
.js .dropbutton-widget .dropbutton-action input,
|
||||
.js .dropbutton-widget .dropbutton-action button {
|
||||
border-radius: 20em 0 0 20em; /* LTR */
|
||||
padding: 4px 1.5em;
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
[dir="rtl"].js .dropbutton-widget .dropbutton-action a,
|
||||
[dir="rtl"].js .dropbutton-widget .dropbutton-action input,
|
||||
[dir="rtl"].js .dropbutton-widget .dropbutton-action button {
|
||||
border-radius: 0 20em 20em 0;
|
||||
}
|
||||
.js .dropbutton-widget .dropbutton-action a:focus,
|
||||
.js .dropbutton-widget .dropbutton-action input:focus,
|
||||
.js .dropbutton-widget .dropbutton-action button:focus {
|
||||
text-decoration: underline;
|
||||
}
|
||||
.js .dropbutton-multiple.open .dropbutton-action a,
|
||||
.js .dropbutton-multiple.open .dropbutton-action .button {
|
||||
border-radius: 0;
|
||||
}
|
||||
.js .dropbutton-multiple.open .dropbutton-action:first-child a,
|
||||
.js .dropbutton-multiple.open .dropbutton-action:first-child .button {
|
||||
border-radius: 0.9em 0 0 0; /* LTR */
|
||||
}
|
||||
[dir="rtl"].js .dropbutton-multiple.open .dropbutton-action:first-child a,
|
||||
[dir="rtl"].js .dropbutton-multiple.open .dropbutton-action:first-child .button {
|
||||
border-radius: 0 0.9em 0 0;
|
||||
}
|
||||
.js .dropbutton-multiple.open .dropbutton-action:last-child a,
|
||||
.js .dropbutton-multiple.open .dropbutton-action:last-child .button {
|
||||
border-radius: 0 0 0 0.9em; /* LTR */
|
||||
}
|
||||
[dir="rtl"].js .dropbutton-multiple.open .dropbutton-action:last-child a,
|
||||
[dir="rtl"].js .dropbutton-multiple.open .dropbutton-action:last-child .button {
|
||||
border-radius: 0 0 0.9em 0;
|
||||
}
|
||||
.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: #f9f8f6;
|
||||
background-image: -webkit-linear-gradient(top, #fcfcfa, #e9e9dd);
|
||||
background-image: linear-gradient(to bottom, #fcfcfa, #e9e9dd);
|
||||
color: #1a1a1a;
|
||||
box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.125);
|
||||
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: #dfdfd9;
|
||||
background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df);
|
||||
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
|
||||
box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.2);
|
||||
}
|
||||
.dropbutton .secondary-action {
|
||||
border-top: 1px solid #bfbfba;
|
||||
}
|
||||
|
||||
/**
|
||||
* Rare instances when a dropbutton is actually just a button.
|
||||
* Copied from Seven's buttons.css.
|
||||
*/
|
||||
.dropbutton-single .dropbutton-widget {
|
||||
border: 0;
|
||||
position: static;
|
||||
display: inline-block;
|
||||
}
|
||||
.dropbutton-single .dropbutton-action a {
|
||||
padding: 4px 1.5em;
|
||||
border: 1px solid #a6a6a6;
|
||||
border-radius: 20em!important;
|
||||
background-color: #f2f1eb;
|
||||
background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df);
|
||||
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
|
||||
color: #333333;
|
||||
text-decoration: none;
|
||||
text-shadow: 0 1px hsla(0, 0%, 100%, 0.6);
|
||||
font-weight: 600;
|
||||
-webkit-transition: all 0.1s;
|
||||
transition: all 0.1s;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
width: auto!important;
|
||||
}
|
||||
.dropbutton-single .dropbutton-action a:hover,
|
||||
.dropbutton-single .dropbutton-action a:focus {
|
||||
background-color: #f9f8f6;
|
||||
background-image: -webkit-linear-gradient(top, #fcfcfa, #e9e9dd);
|
||||
background-image: linear-gradient(to bottom, #fcfcfa, #e9e9dd);
|
||||
color: #1a1a1a;
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
.dropbutton-single .dropbutton-action a:hover,
|
||||
.dropbutton-single .dropbutton-action a:focus {
|
||||
box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.125);
|
||||
}
|
||||
.dropbutton-single .dropbutton-action a:active {
|
||||
background-color: #dfdfd9;
|
||||
background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df);
|
||||
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
|
||||
box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.2);
|
||||
-webkit-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* The dropdown trigger.
|
||||
*/
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button {
|
||||
border-left: 1px solid #a6a6a6; /* LTR */
|
||||
outline: none;
|
||||
}
|
||||
[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 {
|
||||
border-radius: 0 20em 20em 0; /* LTR */
|
||||
}
|
||||
[dir="rtl"].js .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button {
|
||||
border-radius: 20em 0 0 20em;
|
||||
}
|
||||
.dropbutton-multiple.open .dropbutton-widget .dropbutton-toggle button {
|
||||
border-radius: 0 1em 1em 0; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .dropbutton-multiple.open .dropbutton-widget .dropbutton-toggle button {
|
||||
border-radius: 1em 0 0 1em;
|
||||
}
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:hover,
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:focus {
|
||||
background-color: #f9f8f6;
|
||||
background-image: -webkit-linear-gradient(top, #fcfcfa, #e9e9dd);
|
||||
background-image: linear-gradient(to bottom, #fcfcfa, #e9e9dd);
|
||||
color: #1a1a1a;
|
||||
text-decoration: none;
|
||||
box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.125);
|
||||
z-index: 3;
|
||||
}
|
||||
.js .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:active {
|
||||
background-color: #dfdfd9;
|
||||
background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df);
|
||||
background-image: linear-gradient(to bottom, #f6f6f3, #e7e7df);
|
||||
box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.2);
|
||||
}
|
||||
.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;
|
||||
text-shadow: 0 1px hsla(0, 0%, 0%, 0.5);
|
||||
}
|
||||
.js .form-actions .dropbutton-widget {
|
||||
border-color: #1e5c90;
|
||||
background-color: #0071b8;
|
||||
background-image: -webkit-linear-gradient(top, #007bc6, #0071b8);
|
||||
background-image: linear-gradient(to bottom, #007bc6, #0071b8);
|
||||
text-shadow: 0 1px hsla(0, 0%, 0%, 0.5);
|
||||
position: relative;
|
||||
}
|
||||
.form-actions .dropbutton-multiple.open .dropbutton-widget {
|
||||
background-image: -webkit-linear-gradient(top, #007bc6, #0071b8);
|
||||
background-image: linear-gradient(to bottom, #007bc6, #0071b8);
|
||||
}
|
||||
.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;
|
||||
background-image: -webkit-linear-gradient(top, #0c97ed, #1f86c7);
|
||||
background-image: linear-gradient(to bottom, #0c97ed, #1f86c7);
|
||||
box-shadow: 0 1px 2px hsla(203, 10%, 10%, 0.25);
|
||||
color: #fff;
|
||||
}
|
||||
.js .form-actions .dropbutton-wrapper .dropbutton-widget .dropbutton-action .button: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);
|
||||
}
|
||||
.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 {
|
||||
background-image: -webkit-linear-gradient(top, #007bc6, #0071b8);
|
||||
background-image: linear-gradient(to bottom, #007bc6, #0071b8);
|
||||
}
|
||||
.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;
|
||||
background-image: -webkit-linear-gradient(top, #0c97ed, #1f86c7);
|
||||
background-image: linear-gradient(to bottom, #0c97ed, #1f86c7);
|
||||
}
|
||||
.js .form-actions .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button: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);
|
||||
}
|
||||
.form-actions .dropbutton-arrow {
|
||||
border-top-color: #fff;
|
||||
}
|
||||
.form-actions .dropbutton-multiple.open .dropbutton-arrow {
|
||||
border-bottom: 0.3333em solid white;
|
||||
}
|
59
web/core/themes/seven/css/components/entity-meta.css
Normal file
59
web/core/themes/seven/css/components/entity-meta.css
Normal file
|
@ -0,0 +1,59 @@
|
|||
/**
|
||||
* Entity meta settings.
|
||||
*/
|
||||
.entity-meta {
|
||||
background-color: #ececec;
|
||||
border-left: 1px solid #bfbfbf;
|
||||
border-right: 1px solid #bfbfbf;
|
||||
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
.entity-meta__header,
|
||||
.entity-meta details {
|
||||
background-color: #f7f7f7;
|
||||
border-top: 1px solid #bfbfbf;
|
||||
border-bottom: 1px solid #bfbfbf;
|
||||
}
|
||||
.entity-meta__header {
|
||||
padding: 1em 1.5em;
|
||||
}
|
||||
.entity-meta__title {
|
||||
text-shadow: 0 1px 0 #fff;
|
||||
margin: 0.25em 0;
|
||||
}
|
||||
.entity-meta__header .form-item {
|
||||
margin: 0.25em 0;
|
||||
}
|
||||
.entity-meta__last-saved {
|
||||
font-style: italic; /* As-designed, but really: why is this italic? */
|
||||
}
|
||||
.entity-meta details {
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-top: 1px solid #fff;
|
||||
margin: 0;
|
||||
}
|
||||
.entity-meta details:first-child {
|
||||
border-top-color: #bfbfbf;
|
||||
}
|
||||
.entity-meta details[open] {
|
||||
background-color: transparent;
|
||||
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.125), transparent 4px);
|
||||
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.125), transparent 4px);
|
||||
border-top-width: 0;
|
||||
padding-top: 1px;
|
||||
}
|
||||
.entity-meta details[open] + details[open] {
|
||||
background-image: none;
|
||||
border-top-width: 1px;
|
||||
padding-top: 0;
|
||||
}
|
||||
.entity-meta details > .details-wrapper {
|
||||
padding-top: 0;
|
||||
}
|
||||
.entity-meta details > summary {
|
||||
padding: 0.85em 1.25em;
|
||||
text-shadow: 0 1px 0 white;
|
||||
}
|
||||
.entity-meta details .summary {
|
||||
display: none; /* Hide JS summaries. @todo Rethink summaries. */
|
||||
}
|
28
web/core/themes/seven/css/components/field-ui.css
Normal file
28
web/core/themes/seven/css/components/field-ui.css
Normal file
|
@ -0,0 +1,28 @@
|
|||
/* Field UI */
|
||||
#field-display-overview input.field-plugin-settings-edit {
|
||||
margin: 0;
|
||||
padding: 1px 8px;
|
||||
}
|
||||
#field-display-overview tr.field-plugin-settings-changed {
|
||||
background: #ffffbb;
|
||||
}
|
||||
#field-display-overview tr.drag {
|
||||
background: #ffee77;
|
||||
}
|
||||
#field-display-overview tr.field-plugin-settings-editing {
|
||||
background: #d5e9f2;
|
||||
}
|
||||
#field-display-overview .field-plugin-settings-edit-form .form-item {
|
||||
margin: 10px 0;
|
||||
}
|
||||
#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;
|
||||
}
|
340
web/core/themes/seven/css/components/form.css
Normal file
340
web/core/themes/seven/css/components/form.css
Normal file
|
@ -0,0 +1,340 @@
|
|||
/**
|
||||
* Form elements.
|
||||
*/
|
||||
form {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
fieldset:not(.fieldgroup) {
|
||||
background-color: #fcfcfa;
|
||||
border-radius: 2px;
|
||||
margin: 1em 0;
|
||||
padding: 30px 18px 18px;
|
||||
min-width: 0;
|
||||
position: relative;
|
||||
}
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
}
|
||||
fieldset:not(.fieldgroup) > legend {
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
letter-spacing: 0.08em;
|
||||
position: absolute;
|
||||
text-transform: uppercase;
|
||||
top: 10px;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
}
|
||||
.form-item {
|
||||
margin: 0.75em 0;
|
||||
}
|
||||
.form-type-checkbox {
|
||||
padding: 0;
|
||||
}
|
||||
label {
|
||||
display: table;
|
||||
margin: 0 0 0.1em;
|
||||
padding: 0;
|
||||
font-weight: bold;
|
||||
}
|
||||
label.error {
|
||||
color: #a51b00;
|
||||
}
|
||||
label[for] {
|
||||
cursor: pointer;
|
||||
}
|
||||
.form-item label.option {
|
||||
text-transform: none;
|
||||
}
|
||||
.form-item label.option input {
|
||||
vertical-align: middle;
|
||||
}
|
||||
.form-disabled label {
|
||||
color: #737373;
|
||||
}
|
||||
.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%, .08);
|
||||
box-shadow: none;
|
||||
}
|
||||
.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);
|
||||
box-shadow: inset 0 5px 5px -5px #b8b8b8;
|
||||
color: #a51b00;
|
||||
}
|
||||
.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: 0;
|
||||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 0 8px 1px #e62600;
|
||||
background-color: #fcf4f2;
|
||||
}
|
||||
.form-required:after {
|
||||
background-size: 7px 7px;
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
}
|
||||
.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,
|
||||
div.description,
|
||||
.form-item .description {
|
||||
margin: 0.2em 0 0 0;
|
||||
color: #595959;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
.form-item .description.error {
|
||||
margin-top: 0;
|
||||
color: #a51b00;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
.form-type-radio .description,
|
||||
.form-type-checkbox .description {
|
||||
margin-left: 1.5em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .form-type-radio .description,
|
||||
[dir="rtl"] .form-type-checkbox .description {
|
||||
margin-left: 0;
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
.form-text,
|
||||
.form-textarea {
|
||||
border-radius: 2px;
|
||||
font-size: 1em;
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
input.form-autocomplete,
|
||||
input.form-text,
|
||||
input.form-tel,
|
||||
input.form-email,
|
||||
input.form-url,
|
||||
input.form-search,
|
||||
input.form-number,
|
||||
input.form-color,
|
||||
input.form-file,
|
||||
input.form-date,
|
||||
input.form-time,
|
||||
textarea.form-textarea {
|
||||
box-sizing: border-box;
|
||||
padding: .3em .4em .3em .5em; /* LTR */
|
||||
max-width: 100%;
|
||||
border: 1px solid #b8b8b8;
|
||||
border-top-color: #999;
|
||||
background: #fff;
|
||||
color: #333;
|
||||
border-radius: 2px;
|
||||
background: #fcfcfa;
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .125);
|
||||
font-size: 1em;
|
||||
color: #595959;
|
||||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
}
|
||||
[dir="rtl"] textarea.form-textarea {
|
||||
padding: .3em .5em .3em .4em;
|
||||
}
|
||||
.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 {
|
||||
border-color: #40b6ff;
|
||||
outline: 0;
|
||||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 0 8px #40b6ff;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.confirm-parent,
|
||||
.password-parent {
|
||||
overflow: visible;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.form-item-options-group-info-identifier,
|
||||
.form-item-pass .description {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/**
|
||||
* Limits extra long instances of select elements to the max width allowed
|
||||
* to avoid breaking layouts.
|
||||
*/
|
||||
select {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Select elements - Webkit only
|
||||
*/
|
||||
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
||||
select {
|
||||
cursor: pointer;
|
||||
-webkit-appearance: none;
|
||||
padding: 1px 1.571em 1px 0.5em; /* LTR */
|
||||
border: 1px solid #a6a6a6;
|
||||
border-radius: 0.143em;
|
||||
background:
|
||||
url(../../../../misc/icons/333333/caret-down.svg) no-repeat 99% 63%,
|
||||
-webkit-linear-gradient(top, #f6f6f3, #e7e7df); /* LTR */
|
||||
text-shadow: 0 1px hsla(0, 0%, 100%, 0.6);
|
||||
font-size: 0.875rem;
|
||||
-webkit-transition: all 0.1s;
|
||||
transition: all 0.1s;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
[dir="rtl"] select {
|
||||
padding: 1px 0.714em 1px 1.571em;
|
||||
background-position: 1% 63%, 0 0;
|
||||
}
|
||||
select:focus,
|
||||
select:hover {
|
||||
background-image: url(../../../../misc/icons/333333/caret-down.svg),
|
||||
-webkit-linear-gradient(top, #fcfcfa, #e9e9dd);
|
||||
color: #1a1a1a;
|
||||
}
|
||||
select:hover {
|
||||
box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.125);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve spacing of cancel link.
|
||||
*/
|
||||
#edit-cancel {
|
||||
margin-left: 10px; /* LTR */
|
||||
}
|
||||
[dir="rtl"] #edit-cancel {
|
||||
margin-left: 0;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve form element usability on narrow devices.
|
||||
*/
|
||||
@media screen and (max-width: 600px) {
|
||||
input.form-autocomplete,
|
||||
input.form-text,
|
||||
input.form-tel,
|
||||
input.form-email,
|
||||
input.form-url,
|
||||
input.form-search,
|
||||
input.form-number,
|
||||
input.form-color,
|
||||
input.form-file,
|
||||
textarea.form-textarea {
|
||||
width: 100%;
|
||||
font-size: 1.2em;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
input.form-number {
|
||||
width: auto;
|
||||
}
|
||||
.form-actions input,
|
||||
.form-wrapper input[type="submit"] {
|
||||
float: none;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
margin-top: 10px;
|
||||
padding-bottom: 6px;
|
||||
width: 100%;
|
||||
}
|
||||
.form-actions input:first-child,
|
||||
.form-wrapper input[type="submit"]:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
details summary {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.password-strength {
|
||||
width: 100%;
|
||||
}
|
||||
div.form-item div.password-suggestions {
|
||||
float: none;
|
||||
}
|
||||
#dblog-filter-form .form-actions {
|
||||
float: none;
|
||||
padding: 0;
|
||||
}
|
||||
#edit-cancel {
|
||||
display: block;
|
||||
margin: 10px 0 0 0;
|
||||
}
|
||||
select {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/* Exceptions */
|
||||
#diff-inline-form select,
|
||||
div.filter-options select {
|
||||
padding: 0;
|
||||
}
|
8
web/core/themes/seven/css/components/help.css
Normal file
8
web/core/themes/seven/css/components/help.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
* @file
|
||||
* Seven styles for the help component.
|
||||
*/
|
||||
|
||||
.help p {
|
||||
margin: 0 0 10px;
|
||||
}
|
447
web/core/themes/seven/css/components/jquery.ui/theme.css
Normal file
447
web/core/themes/seven/css/components/jquery.ui/theme.css
Normal file
|
@ -0,0 +1,447 @@
|
|||
/**
|
||||
* @file
|
||||
* Seven 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Interaction states
|
||||
*/
|
||||
.ui-state-default,
|
||||
.ui-state-hover,
|
||||
.ui-state-focus,
|
||||
.ui-state-active {
|
||||
outline: 0;
|
||||
}
|
||||
.ui-state-highlight {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Interaction cues
|
||||
*/
|
||||
.ui-state-active,
|
||||
.ui-widget-content .ui-state-active {
|
||||
color: #840;
|
||||
background: #fe6;
|
||||
border: solid 1px #ed5;
|
||||
}
|
||||
.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: .35;
|
||||
filter: Alpha(Opacity=35);
|
||||
}
|
||||
.ui-priority-secondary,
|
||||
.ui-widget-content .ui-priority-secondary {
|
||||
opacity: .7;
|
||||
filter: Alpha(Opacity=70);
|
||||
}
|
||||
|
||||
/**
|
||||
* Icons
|
||||
*/
|
||||
/* states and images */
|
||||
.ui-icon {
|
||||
display: block;
|
||||
text-indent: -99999px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
overflow: hidden;
|
||||
background-repeat: no-repeat;
|
||||
background-image: url(../../../images/ui-icons-222222-256x240.png);
|
||||
}
|
||||
.ui-widget-content .ui-icon,
|
||||
.ui-widget-header .ui-icon {
|
||||
background-image: url(../../../images/ui-icons-222222-256x240.png);
|
||||
}
|
||||
.ui-state-default .ui-icon {
|
||||
background-image: url(../../../images/ui-icons-888888-256x240.png);
|
||||
}
|
||||
.ui-state-hover .ui-icon,
|
||||
.ui-state-focus .ui-icon,
|
||||
.ui-state-highlight .ui-icon {
|
||||
background-image: url(../../../images/ui-icons-454545-256x240.png);
|
||||
}
|
||||
.ui-state-active .ui-icon {
|
||||
background-image: url(../../../images/ui-icons-800000-256x240.png);
|
||||
}
|
||||
.ui-state-error .ui-icon,
|
||||
.ui-state-error-text .ui-icon {
|
||||
background-image: url(../../../images/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 li.ui-tabs-selected a {
|
||||
color: #fff;
|
||||
background: #666;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* Overlays
|
||||
*/
|
||||
.ui-widget-overlay {
|
||||
background: #000;
|
||||
opacity: .70;
|
||||
filter: Alpha(Opacity=70);
|
||||
}
|
||||
|
||||
/**
|
||||
* 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 url(../../../../../misc/progress.gif);
|
||||
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;
|
||||
}
|
||||
|
||||
/* 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;
|
||||
}
|
41
web/core/themes/seven/css/components/menus-and-lists.css
Normal file
41
web/core/themes/seven/css/components/menus-and-lists.css
Normal file
|
@ -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 li.collapsed,
|
||||
.menu-item--collapsed {
|
||||
list-style-image: url(../../../../misc/menu-collapsed.png);
|
||||
list-style-type: disc;
|
||||
}
|
||||
.item-list ul li.expanded,
|
||||
.menu-item--expanded {
|
||||
list-style-image: url(../../../../misc/menu-expanded.png);
|
||||
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;
|
||||
}
|
21
web/core/themes/seven/css/components/messages.css
Normal file
21
web/core/themes/seven/css/components/messages.css
Normal file
|
@ -0,0 +1,21 @@
|
|||
/**
|
||||
* Messages.
|
||||
*/
|
||||
.messages {
|
||||
margin: 9px 0 10px 8px; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .messages {
|
||||
margin: 9px 8px 10px 0;
|
||||
}
|
||||
.messages pre {
|
||||
margin: 0;
|
||||
}
|
||||
.messages h1, .messages .heading-a,
|
||||
.messages h2, .messages .heading-b,
|
||||
.messages h3, .messages .heading-c,
|
||||
.messages h4, .messages .heading-d,
|
||||
.messages h5, .messages .heading-e,
|
||||
.messages h6, .messages .heading-f {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
47
web/core/themes/seven/css/components/modules-page.css
Normal file
47
web/core/themes/seven/css/components/modules-page.css
Normal file
|
@ -0,0 +1,47 @@
|
|||
/* 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 #ccc;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.system-modules tr.even,
|
||||
.system-modules tr.odd,
|
||||
.locale-translation-status-form tr.even,
|
||||
.locale-translation-status-form tr.odd {
|
||||
background: #f3f4ee;
|
||||
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;
|
||||
}
|
3
web/core/themes/seven/css/components/node.css
Normal file
3
web/core/themes/seven/css/components/node.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
.node__submitted {
|
||||
margin: 1em 0;
|
||||
}
|
8
web/core/themes/seven/css/components/page-title.css
Normal file
8
web/core/themes/seven/css/components/page-title.css
Normal file
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
* @file
|
||||
* Page title.
|
||||
*/
|
||||
.page-title {
|
||||
display: inline-block;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
45
web/core/themes/seven/css/components/pager.css
Normal file
45
web/core/themes/seven/css/components/pager.css
Normal file
|
@ -0,0 +1,45 @@
|
|||
/**
|
||||
* @file
|
||||
* Styles for Seven's Pagination.
|
||||
*/
|
||||
.pager__items {
|
||||
margin: 0.25em 0 0.25em 1.5em; /* LTR */
|
||||
padding: 0;
|
||||
}
|
||||
[dir="rtl"] .pager__items {
|
||||
margin: 0.25em 1.5em 0.25em 0;
|
||||
}
|
||||
.pager__item {
|
||||
display: inline-block;
|
||||
color: #8c8c8c;
|
||||
font-size: 1.08em;
|
||||
margin: 0;
|
||||
padding: 0 0.4em;
|
||||
}
|
||||
.pager__item a {
|
||||
border-bottom: 2px solid transparent;
|
||||
line-height: 1.55em;
|
||||
padding: 0 5px 2px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: border-bottom-color 0.2s;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
.pager__item.is-active a {
|
||||
border-bottom-width: 3px;
|
||||
border-bottom-color: #2a678c;
|
||||
color: #2a678c;
|
||||
font-weight: 700;
|
||||
}
|
||||
.pager__item a:hover,
|
||||
.pager__item a:focus {
|
||||
border-bottom-color: #3395d2;
|
||||
color: #3395d2;
|
||||
}
|
||||
.pager__item--next a,
|
||||
.pager__item--last a,
|
||||
.pager__item--first a,
|
||||
.pager__item--previous a {
|
||||
border-bottom-width: 0;
|
||||
color: #2a678c;
|
||||
}
|
17
web/core/themes/seven/css/components/panel.css
Normal file
17
web/core/themes/seven/css/components/panel.css
Normal file
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
* @file
|
||||
* Panel styling. Panels are used to visually group items together.
|
||||
*/
|
||||
|
||||
.panel {
|
||||
margin: 0 0 20px;
|
||||
padding: 9px;
|
||||
background: #f8f8f8;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
.panel__title {
|
||||
font-size: 1em;
|
||||
text-transform: uppercase;
|
||||
margin: 0;
|
||||
padding-bottom: 9px;
|
||||
}
|
63
web/core/themes/seven/css/components/quickedit.css
Normal file
63
web/core/themes/seven/css/components/quickedit.css
Normal file
|
@ -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 Seven 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 Seven 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,14 @@
|
|||
/**
|
||||
* @file
|
||||
* Styles for administration pages.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Add search page select/submit.
|
||||
*/
|
||||
.search-admin-settings .container-inline {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.search-admin-settings label[for="edit-search-type"] {
|
||||
display: block;
|
||||
}
|
25
web/core/themes/seven/css/components/skip-link.css
Normal file
25
web/core/themes/seven/css/components/skip-link.css
Normal file
|
@ -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 !important;
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
/**
|
||||
* @file
|
||||
* Seven styles for the System Status Report.
|
||||
*/
|
||||
|
||||
.system-status-report__entry {
|
||||
border-top: 1px solid #ccc;
|
||||
border-bottom: inherit;
|
||||
}
|
||||
.system-status-report__entry:first-child {
|
||||
border-top: 1px solid #bebfb9;
|
||||
}
|
||||
.system-status-report__entry:last-child {
|
||||
border-bottom: 1px solid #bebfb9;
|
||||
}
|
147
web/core/themes/seven/css/components/tables.css
Normal file
147
web/core/themes/seven/css/components/tables.css
Normal file
|
@ -0,0 +1,147 @@
|
|||
/**
|
||||
* @file
|
||||
* Seven styles for Tables.
|
||||
*/
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
margin: 0 0 10px;
|
||||
}
|
||||
caption {
|
||||
text-align: left; /* LTR */
|
||||
}
|
||||
[dir="rtl"] caption {
|
||||
text-align: right;
|
||||
}
|
||||
th {
|
||||
text-align: left; /* LTR */
|
||||
padding: 10px 12px;
|
||||
}
|
||||
[dir="rtl"] th {
|
||||
text-align: right;
|
||||
}
|
||||
thead th {
|
||||
background: #f5f5f2;
|
||||
border: solid #bfbfba;
|
||||
border-width: 1px 0;
|
||||
color: #333;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
tr {
|
||||
border-bottom: 1px solid #e6e4df;
|
||||
padding: 0.1em 0.6em;
|
||||
}
|
||||
thead > tr {
|
||||
border-bottom: 1px solid #000;
|
||||
}
|
||||
tbody tr:hover,
|
||||
tbody tr:focus {
|
||||
background: #f7fcff;
|
||||
}
|
||||
|
||||
/* See colors.css */
|
||||
tbody tr.color-warning:hover,
|
||||
tbody tr.color-warning:focus {
|
||||
background: #fdf8ed;
|
||||
}
|
||||
tbody tr.color-error:hover,
|
||||
tbody tr.color-error:focus {
|
||||
background: #fcf4f2;
|
||||
}
|
||||
td,
|
||||
th {
|
||||
vertical-align: middle;
|
||||
}
|
||||
td {
|
||||
padding: 10px 12px;
|
||||
text-align: left; /* LTR */
|
||||
}
|
||||
[dir="rtl"] td {
|
||||
text-align: right;
|
||||
}
|
||||
th > a {
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* 1. Must match negative bottom padding of the parent <th> */
|
||||
th > a:after {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: -10px; /* 1. */
|
||||
left: 0;
|
||||
right: 0;
|
||||
border-bottom: 2px solid transparent;
|
||||
-webkit-transition: all 0.1s;
|
||||
transition: all 0.1s;
|
||||
}
|
||||
th.is-active > a {
|
||||
color: #004875;
|
||||
}
|
||||
th.is-active img {
|
||||
position: absolute;
|
||||
right: 0; /* LTR */
|
||||
top: 50%;
|
||||
}
|
||||
[dir="rtl"] th.is-active img {
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
th.is-active > a:after {
|
||||
border-bottom-color: #004875;
|
||||
}
|
||||
th > a:hover,
|
||||
th > a:focus,
|
||||
th.is-active > a:hover,
|
||||
th.is-active > a:focus {
|
||||
color: #008ee6;
|
||||
text-decoration: none;
|
||||
}
|
||||
th > a:hover:after,
|
||||
th > a:focus:after,
|
||||
th.is-active > a:hover:after,
|
||||
th.is-active > a:focus:after {
|
||||
border-bottom-color: #008ee6;
|
||||
}
|
||||
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;
|
||||
}
|
||||
|
||||
/* Force browsers to calculate the width of a 'select all' <th> element. */
|
||||
th.select-all {
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Captions.
|
||||
*/
|
||||
.caption {
|
||||
margin-bottom: 1.2em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Responsive tables.
|
||||
*/
|
||||
@media screen and (max-width: 37.5em) { /* 600px */
|
||||
th.priority-low,
|
||||
td.priority-low,
|
||||
th.priority-medium,
|
||||
td.priority-medium {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 60em) { /* 920px */
|
||||
th.priority-low,
|
||||
td.priority-low {
|
||||
display: none;
|
||||
}
|
||||
}
|
26
web/core/themes/seven/css/components/tablesort-indicator.css
Normal file
26
web/core/themes/seven/css/components/tablesort-indicator.css
Normal file
|
@ -0,0 +1,26 @@
|
|||
/**
|
||||
* @file
|
||||
* Tablesort indicator styles.
|
||||
*/
|
||||
|
||||
.tablesort {
|
||||
float: right; /* LTR */
|
||||
margin-top: 5px;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
[dir="rtl"] .tablesort {
|
||||
float: left;
|
||||
}
|
||||
.tablesort--asc {
|
||||
background-image: url(../../../../misc/icons/004875/twistie-down.svg);
|
||||
}
|
||||
a:hover .tablesort--asc {
|
||||
background-image: url(../../../../misc/icons/008ee6/twistie-down.svg);
|
||||
}
|
||||
.tablesort--desc {
|
||||
background-image: url(../../../../misc/icons/004875/twistie-up.svg);
|
||||
}
|
||||
a:hover .tablesort--desc {
|
||||
background-image: url(../../../../misc/icons/008ee6/twistie-up.svg);
|
||||
}
|
355
web/core/themes/seven/css/components/tabs.css
Normal file
355
web/core/themes/seven/css/components/tabs.css
Normal file
|
@ -0,0 +1,355 @@
|
|||
/**
|
||||
* Tabs.
|
||||
*/
|
||||
.is-collapse-enabled .tabs,
|
||||
.is-horizontal .tabs {
|
||||
position: relative;
|
||||
}
|
||||
.is-collapse-enabled .tabs:before,
|
||||
.is-horizontal .tabs:before {
|
||||
content: '';
|
||||
display: block;
|
||||
background-color: #A6A6A6;
|
||||
height: 1px;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 10;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
/* Span the full width of the viewport */
|
||||
.content-header .is-horizontal .tabs:before,
|
||||
.content-header .is-collapse-enabled .tabs:before {
|
||||
left: -2.5em;
|
||||
right: -2.5em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tab
|
||||
*
|
||||
* 1. Required by some elements such as <button>
|
||||
* 2. Fixed height needed to ensure alignment with absolutely-positioned
|
||||
* active tab.
|
||||
*/
|
||||
.tabs__tab {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
box-sizing: border-box;
|
||||
margin: -1px 0 0;
|
||||
padding: 9px 2em 7px 1em; /* LTR */
|
||||
width: 100%; /* 1 */
|
||||
border: 1px solid #bfbfbf;
|
||||
background-color: rgba(242, 242, 240, 0.7);
|
||||
color: #0074bd;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
[dir="rtl"] .tabs__tab {
|
||||
padding-left: 2em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
.tabs__tab:hover,
|
||||
.tabs__tab:focus {
|
||||
color: #008ee6;
|
||||
background-color: #fafaf7;
|
||||
}
|
||||
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 {
|
||||
padding: 9px 2em 7px 1em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] li.tabs__tab a {
|
||||
padding-left: 2em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
.tabs a:hover,
|
||||
.tabs a:focus {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Primary tabs */
|
||||
.tabs.primary {
|
||||
clear: both;
|
||||
margin: 16px 0 0;
|
||||
margin: 1rem 0 0;
|
||||
}
|
||||
.tabs.primary .tabs__tab.is-active {
|
||||
z-index: 15;
|
||||
border-color: #a6a6a6;
|
||||
border-radius: 4px 0 0 0; /* LTR */
|
||||
background-color: #ffffff;
|
||||
color: #004f80;
|
||||
}
|
||||
[dir="rtl"] .tabs.primary .tabs__tab.is-active {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 4px;
|
||||
}
|
||||
.tabs.primary a {
|
||||
background: none;
|
||||
}
|
||||
.tabs.primary a:focus {
|
||||
color: #008ee6;
|
||||
background-color: #fafaf7;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.tabs.primary .is-active a:focus {
|
||||
background: none;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Only add the arrow if there's space */
|
||||
@media screen and (min-width:18.75em) { /* 300px */
|
||||
.tabs.primary a {
|
||||
background: url(../../../../misc/icons/0074bd/chevron-right.svg) 99% center no-repeat;
|
||||
}
|
||||
[dir="rtl"] .tabs.primary a {
|
||||
background: url(../../../../misc/icons/0074bd/chevron-left.svg) 1% center no-repeat;
|
||||
}
|
||||
.tabs.primary .tabs__tab.is-active a {
|
||||
background-image: none;
|
||||
}
|
||||
}
|
||||
.tabs__trigger {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* JS dependent styling */
|
||||
.is-collapse-enabled .tabs__trigger {
|
||||
box-sizing: content-box;
|
||||
display: block;
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
right: 0; /* LTR */
|
||||
top: 2px;
|
||||
left: auto; /* LTR */
|
||||
width: 25%;
|
||||
padding-right: 4px;
|
||||
padding-left: 4px;
|
||||
border-left: 0; /* LTR */
|
||||
border-radius: 0 4px 0 0; /* LTR */
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 1.25em;
|
||||
letter-spacing: 0.1em;
|
||||
text-align: center;
|
||||
outline: 0;
|
||||
}
|
||||
[dir="rtl"] .is-collapse-enabled .tabs__trigger {
|
||||
border-right: 0;
|
||||
border-left: 1px solid #bfbfbf;
|
||||
border-radius: 4px 0 0 0;
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
.is-collapse-enabled .tabs {
|
||||
padding-top: 38px;
|
||||
max-height: 0;
|
||||
}
|
||||
.tabs.is-open {
|
||||
max-height: 999em;
|
||||
padding-bottom:16px;
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
.is-collapse-enabled .tabs__tab.is-active {
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
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: #ffffff;
|
||||
color: #004f80;
|
||||
border-bottom: 1px solid #a6a6a6;
|
||||
}
|
||||
|
||||
/* Styles for the horizontal state always take priority */
|
||||
.is-horizontal .tabs {
|
||||
max-height: none !important;
|
||||
padding-top: 0 !important;
|
||||
overflow: visible;
|
||||
}
|
||||
.is-horizontal .tabs__tab {
|
||||
float: left; /* LTR */
|
||||
height: auto;
|
||||
width: auto;
|
||||
margin: 0 0 -1px;
|
||||
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: -1px; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .is-horizontal .tabs__tab + .tabs__tab {
|
||||
margin-left: 0;
|
||||
margin-right: -1px;
|
||||
}
|
||||
.is-horizontal .tabs.primary .tabs__tab:first-child {
|
||||
border-radius: 4px 0 0 0; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .is-horizontal .tabs.primary .tabs__tab:first-child {
|
||||
border-radius: 0 4px 0 0;
|
||||
}
|
||||
.is-horizontal .tabs.primary .tabs__tab:last-child {
|
||||
border-radius: 0 4px 0 0; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .is-horizontal .tabs.primary .tabs__tab:last-child {
|
||||
border-radius: 4px 0 0 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 {
|
||||
border-radius: 4px 4px 0 0;
|
||||
position: relative;
|
||||
width: auto;
|
||||
top: 0;
|
||||
border-bottom: 0;
|
||||
margin: 0 -4px;
|
||||
}
|
||||
.is-horizontal .tabs.primary a {
|
||||
background-image: none;
|
||||
padding: 7px 2em 7px 2em;
|
||||
}
|
||||
.is-horizontal .tabs__trigger {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Secondary tabs */
|
||||
.tabs.secondary {
|
||||
display: block;
|
||||
margin-top: 16px;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
.tabs.secondary .tabs__tab {
|
||||
display: block;
|
||||
padding: 5px 15px 5px 16px; /* LTR */
|
||||
margin-left: -1px; /* LTR */
|
||||
color: #0074bd;
|
||||
-webkit-transition: border-color 0.2s, background-color 0.2s;
|
||||
transition: border-color 0.2s, background-color 0.2s;
|
||||
}
|
||||
[dir="rtl"] .tabs.secondary .tabs__tab {
|
||||
padding-left: 15px;
|
||||
padding-right: 16px;
|
||||
margin-left: 0;
|
||||
margin-right: -1px;
|
||||
}
|
||||
/* 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 + .tabs__tab {
|
||||
border-top: 1px solid #d9d8d4;
|
||||
}
|
||||
.tabs.secondary .tabs__tab.is-active {
|
||||
color: #004f80;
|
||||
border-left: 2px solid #004f80; /* LTR */
|
||||
padding-left: 15px; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .tabs.secondary .tabs__tab.is-active {
|
||||
border-left: 1px solid #bfbfbf;
|
||||
border-right: 2px solid #004f80;
|
||||
padding-right: 15px;
|
||||
}
|
||||
/* 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 {
|
||||
color: #008ee6;
|
||||
border-left: 2px solid #008ee6; /* LTR */
|
||||
padding-left: 15px; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .tabs.secondary .tabs__tab:hover,
|
||||
[dir="rtl"] .tabs.secondary .tabs__tab:focus {
|
||||
border-left: 1px solid #bfbfbf;
|
||||
border-right: 2px solid #008ee6;
|
||||
padding-right: 15px;
|
||||
}
|
||||
/* 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: 7px 13px 5px;
|
||||
text-decoration: none;
|
||||
}
|
||||
/* This is required to win over specificity of [dir="rtl"] li.tabs__tab a */
|
||||
[dir="rtl"] .tabs.secondary a {
|
||||
padding-left: 13px;
|
||||
padding-right: 13px;
|
||||
}
|
||||
/* 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: #004f80;
|
||||
}
|
||||
.tabs.secondary a:focus {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* 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: 1em;
|
||||
margin-right: 1em;
|
||||
border-bottom: 2px solid transparent;
|
||||
border-left: 1px solid transparent; /* LTR */
|
||||
border-right-color: transparent; /* LTR */
|
||||
border-top: 0;
|
||||
padding: 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: #004f80;
|
||||
}
|
||||
.is-horizontal .tabs.secondary .tabs__tab:hover,
|
||||
.is-horizontal .tabs.secondary .tabs__tab:focus {
|
||||
border-bottom-color: #008ee6;
|
||||
}
|
103
web/core/themes/seven/css/components/tour.theme.css
Normal file
103
web/core/themes/seven/css/components/tour.theme.css
Normal file
|
@ -0,0 +1,103 @@
|
|||
/**
|
||||
* @file
|
||||
* Styles for Tour theme.
|
||||
*/
|
||||
|
||||
/* Default styles for the container */
|
||||
.joyride-tip-guide {
|
||||
background: #000;
|
||||
background: rgba(0,0,0, 0.8);
|
||||
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 rgba(0,0,0, 0.8);
|
||||
}
|
||||
.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: rgba(0,0,0, 0.8);
|
||||
}
|
||||
.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: rgba(0,0,0, 0.8);
|
||||
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: #ffffff;
|
||||
}
|
||||
|
||||
.joyride-expose-cover {
|
||||
background: transparent;
|
||||
}
|
120
web/core/themes/seven/css/components/vertical-tabs.css
Normal file
120
web/core/themes/seven/css/components/vertical-tabs.css
Normal file
|
@ -0,0 +1,120 @@
|
|||
/**
|
||||
* @file
|
||||
* Override of misc/vertical-tabs.css.
|
||||
*/
|
||||
|
||||
.vertical-tabs {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 10px 0;
|
||||
border: 1px solid #bdbdbd;
|
||||
border-radius: 4px;
|
||||
background: #e6e5e1;
|
||||
}
|
||||
.vertical-tabs__menu {
|
||||
float: left; /* LTR */
|
||||
width: 240px;
|
||||
margin: 0 -100% -1px 0; /* LTR */
|
||||
padding: 0;
|
||||
border-bottom: 1px solid #ccc;
|
||||
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%;
|
||||
border-right: 1px solid #fcfcfa; /* LTR */
|
||||
box-shadow: 0 5px 5px -5px hsla(0, 0%, 0%, 0.3);
|
||||
border-bottom: 1px solid #b3b2ad;
|
||||
}
|
||||
.vertical-tabs__menu-item.last {
|
||||
border-bottom: none;
|
||||
}
|
||||
[dir="rtl"] .vertical-tabs__menu-item.is-selected {
|
||||
border-left: 1px solid #fcfcfa;
|
||||
border-right: none;
|
||||
}
|
||||
.vertical-tabs__menu-item:focus,
|
||||
.vertical-tabs__menu-item:active {
|
||||
z-index: 2;
|
||||
}
|
||||
.vertical-tabs__menu-item a {
|
||||
display: block;
|
||||
padding: 10px 15px 15px;
|
||||
border-bottom: 1px solid #b3b2ad;
|
||||
background-color: #f2f2f0;
|
||||
text-shadow: 0 1px hsla(0, 0%, 100%, 0.6);
|
||||
text-decoration: none;
|
||||
}
|
||||
.vertical-tabs__menu-item:last-child a {
|
||||
border-bottom: 0;
|
||||
}
|
||||
.vertical-tabs__menu-item.is-selected a,
|
||||
.vertical-tabs__menu-item a:hover,
|
||||
.vertical-tabs__menu-item a:focus {
|
||||
background: #fcfcfa;
|
||||
text-shadow: none;
|
||||
}
|
||||
.vertical-tabs__menu-item a:focus {
|
||||
outline: none;
|
||||
}
|
||||
.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: #004f80;
|
||||
padding-left: 11px; /* LTR */
|
||||
border-bottom: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
[dir=rtl] .vertical-tabs__menu-item.is-selected a {
|
||||
padding-left: 15px;
|
||||
padding-right: 11px;
|
||||
}
|
||||
.vertical-tabs__menu-item.is-selected a:hover,
|
||||
.vertical-tabs__menu-item.is-selected a:focus {
|
||||
color: #007ecc;
|
||||
}
|
||||
[data-vertical-tabs-panes] {
|
||||
background-color: #fcfcfa;
|
||||
}
|
||||
.vertical-tabs__panes {
|
||||
margin: 0 0 0 240px; /* LTR */
|
||||
padding: 10px 15px 10px 15px;
|
||||
border-left: 1px solid #a6a5a1; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .vertical-tabs__panes {
|
||||
margin: 0 240px 0 0;
|
||||
border-left: none;
|
||||
border-right: 1px solid #a6a5a1;
|
||||
}
|
||||
.vertical-tabs__panes:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
.vertical-tabs__pane {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
color: #595959;
|
||||
}
|
||||
.vertical-tabs__menu-item-summary {
|
||||
display: block;
|
||||
padding-top: 0.4em;
|
||||
color: #666;
|
||||
}
|
||||
.vertical-tabs__pane > summary {
|
||||
display: none;
|
||||
}
|
332
web/core/themes/seven/css/components/views-ui.css
Normal file
332
web/core/themes/seven/css/components/views-ui.css
Normal file
|
@ -0,0 +1,332 @@
|
|||
/**
|
||||
* Views styling
|
||||
*/
|
||||
|
||||
/* @group Forms */
|
||||
|
||||
/**
|
||||
* Seven 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;
|
||||
margin-right: 0; /* LTR */
|
||||
margin-top: 0;
|
||||
}
|
||||
[dir="rtl"] .views-admin input.form-submit,
|
||||
[dir="rtl"] .views-ui-dialog input.form-submit,
|
||||
[dir="rtl"] .views-admin a.button,
|
||||
[dir="rtl"] .views-ui-dialog a.button {
|
||||
margin-left: 0;
|
||||
margin-right: 1em;
|
||||
}
|
||||
[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: 3px;
|
||||
}
|
||||
|
||||
/* @group Dependent options
|
||||
*/
|
||||
|
||||
/* This is necessary to supercede the Seven .form-item
|
||||
* reset declaration that sets the margin to zero.
|
||||
*/
|
||||
.form-item-options-expose-required,
|
||||
.form-item-options-expose-label,
|
||||
.form-item-options-expose-description {
|
||||
margin-left: 1.5em; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .form-item-options-expose-required,
|
||||
[dir="rtl"] .form-item-options-expose-label,
|
||||
[dir="rtl"] .form-item-options-expose-description {
|
||||
margin-left: 0;
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @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: 2px 7px 3px;
|
||||
}
|
||||
|
||||
.views-displays ul.secondary li a {
|
||||
color: #0074bd;
|
||||
}
|
||||
|
||||
.views-displays ul.secondary li.is-active a,
|
||||
.views-displays ul.secondary li.is-active a.is-active {
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
|
||||
/* @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 3px;
|
||||
}
|
||||
|
||||
.views-displays .secondary a:hover > .icon.add {
|
||||
background-position: center -25px;
|
||||
}
|
||||
|
||||
.views-displays .secondary .open > a {
|
||||
border-radius: 7px 7px 0 0;
|
||||
}
|
||||
|
||||
.views-displays .secondary .open > a:hover,
|
||||
.views-displays .secondary .open > a:focus {
|
||||
background-color: #f1f1f1;
|
||||
color: #008BCB;
|
||||
}
|
||||
|
||||
.views-displays .secondary .action-list li:first-child {
|
||||
border-radius: 0 7px 0 0; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .views-displays .secondary .action-list li:first-child {
|
||||
border-radius: 7px 0 0 0;
|
||||
}
|
||||
|
||||
.views-displays .secondary .action-list li:last-child {
|
||||
border-radius: 0 0 7px 7px;
|
||||
}
|
||||
|
||||
.views-displays .secondary .action-list input.form-submit {
|
||||
color: #008bcb;
|
||||
}
|
||||
|
||||
/* @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 !important;
|
||||
border-right: 1px solid transparent !important;
|
||||
}
|
||||
|
||||
.views-ui-rearrange-filter-form tr.drag td {
|
||||
background-color: #FFEE77 !important;
|
||||
}
|
||||
|
||||
.views-ui-rearrange-filter-form tr.drag-previous td {
|
||||
background-color: #FFFFBB !important;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Live preview elements */
|
||||
|
||||
.views-query-info pre {
|
||||
margin-bottom: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
/* @group Query info table */
|
||||
|
||||
.views-query-info table {
|
||||
border-radius: 7px;
|
||||
-webkit-border-horizontal-spacing: 1px;
|
||||
-webkit-border-vertical-spacing: 1px;
|
||||
}
|
||||
|
||||
.views-query-info table tr td:last-child {
|
||||
/* Fixes a Seven 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 */
|
||||
|
||||
/* @end */
|
||||
|
||||
/* @group Add view */
|
||||
|
||||
.form-item-page-create,
|
||||
.form-item-block-create {
|
||||
margin-top: 13px;
|
||||
}
|
||||
|
||||
/* @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 Seven'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 */
|
Reference in a new issue