You are here

color.css in AT Tools 8.2

/**
 * Colors
 * - Add or modify colors for all theme elements.
 * - Most colors are set in _variables.scss where you can make global changes
 *   without touching this file at all.
 * - If your theme is using the Color module be very careful about what you
 *   change in this file, or in the global _variables.scss file, the color
 *   schemes expect certain hex values to exist in the color.css file - it is
 *   safer to place colors in a partial that is not parsed by the Color module.
 ============================================================================ */
/**
 * base.elements
 ============================================================================ */
html {
  background-color: #333333;
}

body {
  background-color: transparent;
  color: #363636;
}

a {
  color: #0066cc;
}

a:visited {
  color: #0066cc;
}

a:active, a.active {
  color: #0066cc;
}

a:hover, a:focus {
  color: #0066cc;
}

blockquote {
  border-color: #cccccc;
}

blockquote p:first-child:before {
  color: #cccccc;
}

blockquote small {
  color: #5c5c5c;
}

blockquote.pull-right {
  border-right-color: #cccccc;
}

hr {
  border-color: #cccccc;
}

/**
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background-color: #b3d4fc;
}

::selection {
  background-color: #b3d4fc;
}

del {
  color: #5c5c5c;
}

code,
pre,
var,
kbd,
samp {
  background: #f2f2f2;
}

/**
 * Web fonts
 ============================================================================ */
/* Override Font Awesome classes. */
.fa-border {
  border-color: #cccccc;
}

/*  Extra classes for Font Awesome. */
.fa-text-color {
  color: #363636;
}

.fa-text-color-light {
  color: #808080;
}

.fa-text-color-medium {
  color: #5c5c5c;
}

.fa-match-border {
  color: #cccccc;
}

.fa-match-border-light {
  color: #eeeeee;
}

.fa-match-link {
  color: #0066cc;
}

.fa-trans-white-25 {
  color: rgba(255, 255, 255, 0.25);
}

.fa-trans-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.fa-trans-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.fa-trans-black-25 {
  color: rgba(0, 0, 0, 0.25);
}

.fa-trans-black-50 {
  color: rgba(0, 0, 0, 0.5);
}

.fa-trans-black-75 {
  color: rgba(0, 0, 0, 0.75);
}

/**
 * Page
 *  - mainly for markup that is printed directly in page.html.twig and
 *    .l-r {}
 ============================================================================ */
.page {
  background-color: #f7f7f7;
}

.regions {
  background-color: #f7f7f7;
}

.pr-header {
  color: #363636;
  background-color: #fafafa;
}

.pr-header .regions {
  background: inherit;
}

.pr-navbar {
  color: #ffffff;
  background-color: #666666;
}

.pr-navbar .regions {
  background: inherit;
}

.pr-navbar .menu a {
  color: inherit;
}

.pr-features {
  color: #363636;
  background-color: #d3d3d3;
}

.pr-features .regions {
  background: inherit;
}

.pr-subfeatures {
  color: #363636;
  background-color: #d3d3d3;
}

.pr-subfeatures .regions {
  background: inherit;
}

.pr-footer {
  color: #ffffff;
  background-color: #666666;
}

.pr-footer .regions {
  background: inherit;
}

.pr-footer .menu a {
  color: inherit;
}

.pr-footer .menu a.active, .pr-footer .menu a:hover, .pr-footer .menu a:focus {
  color: inherit;
}

/**
 * AT attribution message
 *  - a toggle setting in the theme settings, you can turn it on/off using
 *    the Markup overrides extension.
 ============================================================================ */
.attribution .l-rw {
  background-color: transparent;
}

.attribution .attribution__link {
  color: #363636;
}

/**
 * Feed Icons
 *  - icons are SVG, SEE feed-icon.html.twig in AT Core templates directory.
 ============================================================================ */
.feed-icon-rss__path {
  fill: rgba(0, 0, 0, 0.6);
}

/**
 * Branding styles
 *  - Drupal core branding block.
 ============================================================================ */
.site-branding__name-link:link, .site-branding__name-link:visited {
  color: #5c5c5c;
}

.site-branding__name-link:hover, .site-branding__name-link:active {
  color: #363636;
}

/**
 * Blocks
 ============================================================================ */
/**
 * Menus
 *  - style Drupal core block menus.
 *  - for the drop menu and other responsive menus see the mixins and the
 *    _navbar.scss partial.
 ============================================================================ */
.menu .menu__link {
  color: #0066cc;
  border-color: #cccccc;
}

.menu .menu__link:hover, .menu .menu__link:focus {
  color: #0066cc;
}

.menu .menu__link.active {
  color: #0066cc;
}

.menu__item:first-child .menu__link {
  border-color: #cccccc;
}

/**
 * Responsive menu styles.
 *
 * Mixins provide the basic structure and a base style (not much), the rest
 * is up to you, add colors, borders, padding and so on. Icons such as
 * the hamburger and arrows are set in variables in _variables.scss, and you
 * use the color variables for menus from there also.
 *
 * Menu styles are set in Appearance settings using the Responsive Menus extension.
 * There you select a block, breakpoint, a default style and a responsive style.
 * You can safely remove mixins from this file if you not going to use them later
 * on, and want to save a few bytes in stylesheet size.
 *
 * Each mixin takes one or more parameters. Use these to customize the basic structure
 * of the menu, or call options, for example you can place the offcanvas menu on the
 * left or right.
 *
 * Do not import into breakpoints unless you are not using the Responsive Menu
 * settings in Appearance Extensions, in which case you will need to load the
 * at_core/at.responsivemenus library and provide it's required drupalSettings.
 *
 * Breakpoints are handled in matchMedia using Enquire.
 *
 * Responsive styles are a combination of three things:
 *  1. Sass/CSS defined here (with breakpoints etc).
 *  2. jQuery: responsive-menus.js in AT Core libraries which adds/toggles classes.
 *  3. Theme settings as set in your themes Advanced extension settings.
 ============================================================================ */
.rm-toggle__link, .rm-toggle__link:hover, .rm-toggle__link:focus, .rm-toggle__link:active {
  color: #ffffff;
  background-color: #666666;
}

.rm-toggle__icon {
  fill: #ffffff;
}

.rm-toggle span {
  background-color: transparent;
}

.ms-offcanvas .rm-block__content .menu .menu__link,
.ms-offcanvas .rm-block__content .menu .rm-accordion-trigger,
.ms-vertical .rm-block__content .menu .menu__link,
.ms-vertical .rm-block__content .menu .rm-accordion-trigger,
.ms-slidedown .rm-block__content .menu .menu__link,
.ms-slidedown .rm-block__content .menu .rm-accordion-trigger,
.ms-tiles .rm-block__content .menu .menu__link,
.ms-tiles .rm-block__content .menu .rm-accordion-trigger {
  color: #ffffff;
  background-color: #666666;
}

.ms-offcanvas .rm-block__content .menu .menu__link:hover, .ms-offcanvas .rm-block__content .menu .menu__link:focus,
.ms-offcanvas .rm-block__content .menu .rm-accordion-trigger:hover,
.ms-offcanvas .rm-block__content .menu .rm-accordion-trigger:focus,
.ms-vertical .rm-block__content .menu .menu__link:hover,
.ms-vertical .rm-block__content .menu .menu__link:focus,
.ms-vertical .rm-block__content .menu .rm-accordion-trigger:hover,
.ms-vertical .rm-block__content .menu .rm-accordion-trigger:focus,
.ms-slidedown .rm-block__content .menu .menu__link:hover,
.ms-slidedown .rm-block__content .menu .menu__link:focus,
.ms-slidedown .rm-block__content .menu .rm-accordion-trigger:hover,
.ms-slidedown .rm-block__content .menu .rm-accordion-trigger:focus,
.ms-tiles .rm-block__content .menu .menu__link:hover,
.ms-tiles .rm-block__content .menu .menu__link:focus,
.ms-tiles .rm-block__content .menu .rm-accordion-trigger:hover,
.ms-tiles .rm-block__content .menu .rm-accordion-trigger:focus {
  color: #ffffff;
  background-color: #757575;
}

.ms-offcanvas .rm-block__content .menu .menu__link.is-active,
.ms-vertical .rm-block__content .menu .menu__link.is-active,
.ms-slidedown .rm-block__content .menu .menu__link.is-active,
.ms-tiles .rm-block__content .menu .menu__link.is-active {
  color: #ffffff;
  background-color: #757575;
}

.ms-offcanvas .rm-block__content .menu .menu__link.is-active[href="/"],
.ms-vertical .rm-block__content .menu .menu__link.is-active[href="/"],
.ms-slidedown .rm-block__content .menu .menu__link.is-active[href="/"],
.ms-tiles .rm-block__content .menu .menu__link.is-active[href="/"] {
  color: #ffffff;
  background-color: #666666;
}

.ms-offcanvas .rm-block__content .menu .menu__link.is-active[href="/"]:hover, .ms-offcanvas .rm-block__content .menu .menu__link.is-active[href="/"]:focus,
.ms-vertical .rm-block__content .menu .menu__link.is-active[href="/"]:hover,
.ms-vertical .rm-block__content .menu .menu__link.is-active[href="/"]:focus,
.ms-slidedown .rm-block__content .menu .menu__link.is-active[href="/"]:hover,
.ms-slidedown .rm-block__content .menu .menu__link.is-active[href="/"]:focus,
.ms-tiles .rm-block__content .menu .menu__link.is-active[href="/"]:hover,
.ms-tiles .rm-block__content .menu .menu__link.is-active[href="/"]:focus {
  color: #ffffff;
  background-color: #757575;
}

.ms-offcanvas .rm-block__content .rm-accordion-trigger__icon,
.ms-vertical .rm-block__content .rm-accordion-trigger__icon,
.ms-slidedown .rm-block__content .rm-accordion-trigger__icon,
.ms-tiles .rm-block__content .rm-accordion-trigger__icon {
  background-color: transparent !important;
  fill: #ffffff;
}

.ms-slidedown .rm-row,
.ms-slidedown .rm-region {
  background-color: #fafafa;
}

.ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link,
.ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link {
  color: inherit;
  background-color: transparent;
}

.ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link:hover, .ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link:focus,
.ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link:hover,
.ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link:focus {
  color: #ffffff;
  background-color: #757575;
}

.ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link.is-active,
.ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link.is-active {
  color: #ffffff;
  background-color: #757575;
}

.ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"],
.ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"] {
  color: inherit;
  background-color: transparent;
}

.ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"]:hover, .ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"]:focus,
.ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"]:hover,
.ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"]:focus {
  color: #ffffff;
  background-color: #757575;
}

.ms-dropmenu .rm-block__content .menu-level-2 .menu__link,
.ms-horizontal .rm-block__content .menu-level-2 .menu__link {
  color: #ffffff;
  background-color: #666666;
}

.ms-dropmenu .rm-block__content .menu-level-2 .menu__link:hover, .ms-dropmenu .rm-block__content .menu-level-2 .menu__link:focus,
.ms-horizontal .rm-block__content .menu-level-2 .menu__link:hover,
.ms-horizontal .rm-block__content .menu-level-2 .menu__link:focus {
  color: #ffffff;
  background-color: #757575;
}

.ms-dropmenu .rm-block__content .menu-level-2 .menu__link.is-active,
.ms-horizontal .rm-block__content .menu-level-2 .menu__link.is-active {
  color: #ffffff;
  background-color: #757575;
}

.ms-overlay .rm-toggle {
  background-color: rgba(0, 0, 0, 0.875);
}

.ms-overlay .rm-toggle:hover, .ms-overlay .rm-toggle:focus {
  background-color: rgba(0, 0, 0, 0.95);
}

.ms-overlay .rm-toggle__link, .ms-overlay .rm-toggle__icon {
  background-color: transparent;
}

.ms-overlay .rm-toggle__link:hover, .ms-overlay .rm-toggle__link:focus, .ms-overlay .rm-toggle__icon:hover, .ms-overlay .rm-toggle__icon:focus {
  background-color: transparent;
}

.ms-overlay.rm-is-open .rm-toggle {
  opacity: 1;
  background-color: white;
}

.ms-overlay.rm-is-open .rm-toggle__icon {
  fill: black;
}

.ms-overlay .rm-block__content {
  background-color: rgba(0, 0, 0, 0.8);
}

.ms-overlay .rm-block__content .menu {
  background-color: transparent;
}

.ms-overlay .rm-block__content .menu .menu__link {
  color: white;
  background-color: rgba(0, 0, 0, 0.95);
}

.ms-overlay .rm-block__content .menu .menu__link:hover, .ms-overlay .rm-block__content .menu .menu__link:focus, .ms-overlay .rm-block__content .menu .menu__link.is-active {
  background-color: rgba(0, 0, 0, 0.75);
}

.ms-overlay .rm-block__content .menu .menu__link.is-active[href="/"] {
  background-color: rgba(0, 0, 0, 0.75);
}

.ms-overlay .rm-block__content .menu .menu__link.is-active[href="/"]:hover, .ms-overlay .rm-block__content .menu .menu__link.is-active[href="/"]:focus {
  background-color: rgba(0, 0, 0, 0.75);
}

.ms-overlay .rm-block__content .menu .rm-accordion-trigger {
  background-color: rgba(0, 0, 0, 0.95);
}

.ms-overlay .rm-block__content .menu .rm-accordion-trigger:hover, .ms-overlay .rm-block__content .menu .rm-accordion-trigger:focus {
  background-color: rgba(0, 0, 0, 0.75);
}

.ms-overlay .rm-block__content .menu .rm-accordion-trigger__icon {
  fill: white;
}

.ms-meganav .rm-block__content .menu .menu__link {
  color: inherit;
  background-color: transparent;
}

.ms-meganav .rm-block__content .menu .menu__link:hover, .ms-meganav .rm-block__content .menu .menu__link:focus {
  color: #ffffff;
  background-color: #757575;
}

.ms-meganav.rm-is-open .rm-block__content .menu-level-1 > .menu__item {
  border-bottom: 1px solid #cccccc;
}

.ms-meganav.rm-is-open .rm-block__content .menu-level-1 > .menu__item > span > .menu__link {
  color: #ffffff;
  background-color: #666666;
}

.ms-meganav.rm-is-open .rm-block__content .menu-level-1 > .menu__item > span > .menu__link:hover, .ms-meganav.rm-is-open .rm-block__content .menu-level-1 > .menu__item > span > .menu__link:focus {
  color: #ffffff;
  background-color: #757575;
}

/**
 * Breadcrumbs
 ============================================================================ */
.breadcrumb li:before {
  color: #cccccc;
}

.breadcrumb a {
  color: #0066cc;
  text-decoration: none;
}

/**
 * Pagers
 * - Full system pager.
 * - Views mini pager.
 ============================================================================ */
.pager__link {
  border-color: #cccccc;
}

.pager__link:focus, .pager__link:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.pager__link:active {
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75);
  opacity: 0.9;
}

.pager__link--is-active {
  background-color: rgba(255, 255, 255, 0.75);
}

.pager--mini .pager__link--is-active {
  background-color: transparent;
  opacity: 0.65;
}

/**
 * Table Theme
 * Style Drupal selectors for tables.
 ============================================================================ */
tr:hover {
  background-color: #ededed;
}

thead tr {
  color: #363636;
  background-color: #e8e8e8;
}

tr,
td,
th {
  border-color: #cccccc;
}

/**
 * Forms
 *  - This probably seems like a lot - remember AT unsets system.theme.css and
 *    gives you complete control over all form elements.
 *
 * Note:
 *  - input type submit is treated as a 'button', see _buttons.scss
 *  - for drop buttons see _buttons.scss
 ============================================================================ */
textarea,
select,
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
  color: #363636;
  border-color: #cccccc;
  background-color: #ffffff;
}

textarea:focus,
select:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus {
  border-color: #cccccc;
  color: #363636;
}

textarea:hover, textarea:focus,
select:hover,
select:focus,
input[type="date"]:hover,
input[type="date"]:focus,
input[type="datetime"]:hover,
input[type="datetime"]:focus,
input[type="datetime-local"]:hover,
input[type="datetime-local"]:focus,
input[type="email"]:hover,
input[type="email"]:focus,
input[type="month"]:hover,
input[type="month"]:focus,
input[type="number"]:hover,
input[type="number"]:focus,
input[type="password"]:hover,
input[type="password"]:focus,
input[type="search"]:hover,
input[type="search"]:focus,
input[type="tel"]:hover,
input[type="tel"]:focus,
input[type="text"]:hover,
input[type="text"]:focus,
input[type="time"]:hover,
input[type="time"]:focus,
input[type="url"]:hover,
input[type="url"]:focus,
input[type="week"]:hover,
input[type="week"]:focus {
  background-color: #ffffff;
}

textarea[disabled]:hover, textarea[disabled]:focus,
select[disabled]:hover,
select[disabled]:focus,
input[type="date"][disabled]:hover,
input[type="date"][disabled]:focus,
input[type="datetime"][disabled]:hover,
input[type="datetime"][disabled]:focus,
input[type="datetime-local"][disabled]:hover,
input[type="datetime-local"][disabled]:focus,
input[type="email"][disabled]:hover,
input[type="email"][disabled]:focus,
input[type="month"][disabled]:hover,
input[type="month"][disabled]:focus,
input[type="number"][disabled]:hover,
input[type="number"][disabled]:focus,
input[type="password"][disabled]:hover,
input[type="password"][disabled]:focus,
input[type="search"][disabled]:hover,
input[type="search"][disabled]:focus,
input[type="tel"][disabled]:hover,
input[type="tel"][disabled]:focus,
input[type="text"][disabled]:hover,
input[type="text"][disabled]:focus,
input[type="time"][disabled]:hover,
input[type="time"][disabled]:focus,
input[type="url"][disabled]:hover,
input[type="url"][disabled]:focus,
input[type="week"][disabled]:hover,
input[type="week"][disabled]:focus {
  color: #363636;
}

/**
 * Collapsible details.
 *
 * @see collapse.js
 * @thanks http://nicolasgallagher.com/css-background-image-hacks/
 */
details {
  border-color: #cccccc;
  background-color: #f7f7f7;
}

input[readonly],
select[readonly],
textarea[readonly] {
  background-color: #ededed;
  color: #363636;
}

button[disabled],
input[disabled],
select[disabled],
select[disabled] option,
select[disabled] optgroup,
textarea[disabled],
a.button_disabled {
  background-color: #ededed;
  color: #363636;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #363636;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #363636;
}

input.placeholder_text,
textarea.placeholder_text {
  color: #363636;
}

/**
 * Form Theme
 ============================================================================ */
.form-type-radio label.option,
.form-type-checkbox label.option {
  border-color: #cccccc;
  background-color: #ffffff;
}

.form-type-radio label.option:focus, .form-type-radio label.option:hover,
.form-type-checkbox label.option:focus,
.form-type-checkbox label.option:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.filter-wrapper {
  border-color: #cccccc;
}

.tips {
  color: #363636;
}

.description {
  color: #363636;
}

form .marker {
  color: #ee0000;
}

.form-required:after {
  color: #ee0000;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border-color: #f9c9bf;
}

/**
 * Vertical tabs.
 ============================================================================ */
.vertical-tabs {
  background-color: #f2f2f2;
  border-color: #cccccc;
}

.vertical-tabs__menu {
  background-color: #ffffff;
  border-top-color: #cccccc;
}

.vertical-tabs__menu-item {
  background: #ffffff;
  border-color: #cccccc;
}

.vertical-tabs__menu-item.is-selected {
  background-color: #f2f2f2;
}

.vertical-tabs__menu-item.is-selected .vertical-tabs__menu-item-title {
  color: #363636;
}

.vertical-tabs__pane {
  background-color: #f2f2f2;
}

/**
 * Buttons
 * We include button styling separate (from _forms.scss) mainly because the form
 * styles are quite long already and we often want to add unique button variants.
 *
 *  - applies to elements with class "button", includes styles for:
 *  - input buttons
 *  - anchor links styled as buttons
 *  - drop buttons
 *  - action link buttons
 ============================================================================ */
button,
.button {
  color: #fcfcfc;
  background-color: #828282;
  border-color: #828282;
  opacity: 0.9;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

button:hover, button:focus,
.button:hover,
.button:focus {
  opacity: 1;
  color: #fcfcfc;
  background-color: #828282;
}

button:visited,
.button:visited {
  color: #fcfcfc;
  background-color: #828282;
}

button[disabled]:hover,
.button[disabled]:hover {
  opacity: 1;
}

.button--primary {
  color: #fcfcfc;
  background-color: #0066cc;
  border: 1px #0066cc solid;
}

.button--primary:link, .button--primary:visited {
  color: #fcfcfc;
  background-color: #0066cc;
  border-color: #0066cc;
}

.button--primary:hover, .button--primary:focus, .button--primary:active, .button--primary.active {
  color: #fcfcfc;
  background-color: #0066cc;
  border-color: #0066cc;
}

.button--danger {
  color: #a51b00;
  background-color: transparent;
  box-shadow: none;
}

.button--danger:link, .button--danger:visited {
  color: #a51b00;
  background-color: transparent;
  border-color: transparent;
}

.button--danger:hover, .button--danger:focus, .button--danger:active, .button--danger.active {
  color: #a51b00;
  background-color: transparent;
  border-color: transparent;
}

.button-action {
  opacity: 1;
}

#edit-preview {
  background-color: #ffffff;
  color: #828282;
}

button.link-edit-summary {
  background-color: inherit;
  color: #363636;
}

button.link-edit-summary:hover, button.link-edit-summary:focus {
  background-color: inherit;
  color: #363636;
}

/* Drop buttons */
.dropbutton-widget {
  background-color: #f7f7f7;
  border-color: #828282;
}

.dropbutton-widget:hover, .dropbutton-widget:focus {
  border-color: #828282;
}

.dropbutton .dropbutton-action .button {
  color: #fcfcfc;
  background-color: #0066cc;
}

.dropbutton .dropbutton-action .button:link, .dropbutton .dropbutton-action .button:visited {
  color: #fcfcfc;
  background-color: #0066cc;
  border-color: #ccc;
}

.dropbutton .dropbutton-action .button:hover, .dropbutton .dropbutton-action .button:focus, .dropbutton .dropbutton-action .button:active, .dropbutton .dropbutton-action .button.active {
  color: #fcfcfc;
  background-color: #0066cc;
  border-color: #ccc;
}

.dropbutton .secondary-action {
  border-top-color: #828282;
}

.dropbutton .secondary-action .button {
  background-color: #f7f7f7;
  color: #828282;
}

.dropbutton .dropbutton-toggle button:hover {
  background-color: transparent;
}

.dropbutton-multiple .dropbutton {
  border-right-color: #828282;
}

[dir="rtl"] .dropbutton-multiple .dropbutton {
  border-left-color: #828282;
}

.dropbutton-multiple.open .dropbutton-action .button {
  border-radius: 2px 0 0 0;
}

.dropbutton-arrow {
  color: #828282;
}

/**
 * Modal dialogs.
 *  -  override jQuery UI styles.
 ============================================================================ */
.ui-widget-overlay {
  background: rgba(0, 0, 0, 0.95);
  opacity: 0.3;
}

.ui-dialog .form-text {
  background-color: inherit !important;
  color: black !important;
  border-color: silver !important;
}

.ui-dialog .form-text::-webkit-input-placeholder {
  color: silver;
}

.ui-dialog .form-text::-moz-placeholder {
  color: silver;
}

.ui-dialog .form-text:-ms-input-placeholder {
  color: silver;
}

.ui-dialog .form-text::placeholder {
  color: silver;
}

.ui-dialog .form-type-radio label.option,
.ui-dialog .form-type-checkbox label.option {
  border-color: transparent;
  background-color: inherit;
}

.ui-dialog .form-type-radio label.option:focus, .ui-dialog .form-type-radio label.option:hover,
.ui-dialog .form-type-checkbox label.option:focus,
.ui-dialog .form-type-checkbox label.option:hover {
  color: inherit;
  background-color: inherit;
}

.ui-dialog .ui-dialog-titlebar {
  color: #363636;
}

.ui-dialog .ui-dialog-buttonpane button {
  color: #fcfcfc;
  background: #828282;
  border-color: #828282;
  opacity: 0.9;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

.ui-dialog .ui-dialog-buttonpane button:hover, .ui-dialog .ui-dialog-buttonpane button:focus {
  opacity: 1;
  color: #fcfcfc;
  background: #828282;
}

.ui-dialog .ui-dialog-buttonpane button:visited {
  color: #fcfcfc;
  background: #828282;
}

.ui-dialog .ui-dialog-buttonpane button[disabled]:hover {
  opacity: 1;
}

.ui-dialog .ui-dialog-buttonpane .button--primary {
  color: #fcfcfc;
  background-color: #0066cc;
  border: 1px #0066cc solid;
}

.ui-dialog .ui-dialog-buttonpane .button--primary:link, .ui-dialog .ui-dialog-buttonpane .button--primary:visited {
  color: #fcfcfc;
  background-color: #0066cc;
  border-color: #0066cc;
}

.ui-dialog .ui-dialog-buttonpane .button--primary:hover, .ui-dialog .ui-dialog-buttonpane .button--primary:focus, .ui-dialog .ui-dialog-buttonpane .button--primary:active, .ui-dialog .ui-dialog-buttonpane .button--primary.active {
  color: #fcfcfc;
  background-color: #0066cc;
  border-color: #0066cc;
}

/**
 * File icons
 * AT un-sets Drupal core file field CSS for image icons and replaces them
 * with FontAwesome icons.
 ============================================================================ */
.file a:before {
  color: #808080;
}

/**
 * File upload widgets.
 ============================================================================ */
.field--widget-file-generic,
.field--widget-image-image {
  background-color: #ffffff;
  border-color: #cccccc;
}

.field--widget-file-generic details,
.field--widget-image-image details {
  background: transparent;
}

.field--widget-image-image .image-preview {
  background-color: transparent;
}

/**
 * Field Taxonomy Reference
 ============================================================================ */
/**
 * Labels.
 *  -  for example "new" mark on comments, tags etc.
 ============================================================================ */
.filter-help a:after,
.more-help-link a:after {
  color: #cccccc;
}

/**
 * Messages
 *  - System messages such as status, warning and error are NOT included
 *    here as we don't want them to shift or change in color module, since
 *    they are too important with regards to accessibility etc.
 ============================================================================ */
.dev-query {
  color: #f7f7f7;
}

body > pre,
.xdebug-var-dump {
  color: #f7f7f7;
}

.page .xdebug-var-dump {
  color: #363636;
}

body:before {
  color: #a51b00;
}

/**
 * Content Types (nodes)
 *  - in Drupal a content type is a bunch of fields we use to enter and display
 *    content, such as pages, blog posts, forum posts and so on. Each of those
 *    is usually a content type you create in the Drupal admin.
 *  - an instance of a content type (e.g. a single blog post) is called a node,
 *    the root template is called node.html.twg and the base selector is .node {}
 ============================================================================ */
.node {
  background-color: #ffffff;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}

.node--sticky {
  background-color: transparent;
  box-shadow: none;
}

/**
 * Node Add Edit Forms.
 ============================================================================ */
.layout-region-node-secondary__inner {
  border-color: #cccccc;
  background-color: #ffffff;
}

.layout-region-node-secondary__inner .entity-meta details[open] {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.085);
}

.layout-region-node-secondary__inner .entity-meta details[open] > summary {
  background-color: rgba(0, 0, 0, 0.025);
}

/**
 * Aggregator
 ============================================================================ */
.aggregator-item {
  background-color: #ffffff;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}

/**
 * Forums
 *  - see table.scss for generic table styles.
 ============================================================================ */
.forum .icon svg {
  fill: rgba(0, 0, 0, 0.5);
}

/**
 * Search results pages
 ============================================================================ */
.item-list--search-results {
  background-color: #ffffff;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}

.search-result__snippet-info {
  color: #5c5c5c;
}

/**
 * Comments
 *  - comment field (holds comment title, form, comments etc)
 *  - styles for comments
 ============================================================================ */
.comment {
  border-color: #eeeeee;
}

/**
 * Social media
 *  - styles for socila media links, modules etc.
 ============================================================================ */
.block-social-media-links .platform__link,
.pane-social-media-link-widget .platform__link {
  color: #363636;
  opacity: 0.65;
}

.block-social-media-links .platform__link:hover, .block-social-media-links .platform__link:focus,
.pane-social-media-link-widget .platform__link:hover,
.pane-social-media-link-widget .platform__link:focus {
  opacity: 1;
}

/**
 * Views
 ============================================================================ */
.view-empty:not(:empty) .links a[href="/node/add"] {
  opacity: 0.9;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  color: #fcfcfc;
  background-color: #0066cc;
  border: 1px #0066cc solid;
}

.view-empty:not(:empty) .links a[href="/node/add"]:hover, .view-empty:not(:empty) .links a[href="/node/add"]:focus {
  opacity: 1;
}

.view-empty:not(:empty) .links a[href="/node/add"][disabled]:hover {
  opacity: 1;
}

.view-empty:not(:empty) .links a[href="/node/add"]:link, .view-empty:not(:empty) .links a[href="/node/add"]:visited {
  color: #fcfcfc;
  background-color: #0066cc;
  border-color: #0066cc;
}

.view-empty:not(:empty) .links a[href="/node/add"]:hover, .view-empty:not(:empty) .links a[href="/node/add"]:focus, .view-empty:not(:empty) .links a[href="/node/add"]:active, .view-empty:not(:empty) .links a[href="/node/add"].active {
  color: #fcfcfc;
  background-color: #0066cc;
  border-color: #0066cc;
}

/**
 * CKEditor Colors
 * Pretty brutal, but effective, combines with other editor partials and files,
 * mainly for Mimic but will color borders for moono also.
 ============================================================================ */
.cke_chrome {
  border-color: #cccccc !important;
  border-top-color: #cccccc !important;
  border-bottom-color: #cccccc !important;
  color: #363636 !important;
}

.cke_top {
  border-bottom-color: #cccccc !important;
  background-color: #f7f7f7 !important;
  color: #363636 !important;
}

.cke_bottom {
  border-top-color: #cccccc !important;
  background-color: #f7f7f7 !important;
  color: #363636 !important;
}

.cke_editable,
textarea.cke_source,
.cke_combopanel {
  background-color: #ffffff !important;
  color: #363636 !important;
}

.cke_combo_off a.cke_combo_button,
a.cke_button_off {
  color: #363636 !important;
}

.cke_combo_off a.cke_combo_button:hover, .cke_combo_off a.cke_combo_button:focus, .cke_combo_off a.cke_combo_button:active,
a.cke_button_off:hover,
a.cke_button_off:focus,
a.cke_button_off:active {
  background-color: #f2f2f2 !important;
  color: #363636 !important;
}

.cke_combo_on a.cke_combo_button,
a.cke_button_on {
  background-color: #f2f2f2 !important;
  color: #363636 !important;
}

.cke_combo_on a.cke_combo_button:hover, .cke_combo_on a.cke_combo_button:focus, .cke_combo_on a.cke_combo_button:active,
a.cke_button_on:hover,
a.cke_button_on:focus,
a.cke_button_on:active {
  background-color: #f2f2f2 !important;
  color: #363636 !important;
}

.cke_panel,
.cke_combopanel {
  background-color: #ffffff !important;
  border-color: #cccccc !important;
}

.cke_combo_text {
  color: #363636 !important;
}

.cke_combo_arrow {
  border-top-color: #cccccc !important;
}

.cke_panel_listItem a {
  color: inherit !important;
}

* html .cke_panel_listItem a {
  color: #363636 !important;
}

*:first-child + html .cke_panel_listItem a {
  color: #363636 !important;
}

.cke_panel_listItem.cke_selected a {
  background-color: #f2f2f2 !important;
}

.cke_panel_listItem a:hover, .cke_panel_listItem a:focus, .cke_panel_listItem a:active {
  background-color: #f2f2f2 !important;
  color: #363636 !important;
}

.cke_reset_all,
.cke_button_icon:before {
  color: #363636 !important;
}

.cke_resizer {
  border-color: transparent #cccccc transparent transparent !important;
}

a.cke_menu_button:after, a.cke_menu_button:before,
a.cke_combo_button:after,
a.cke_combo_button:before,
a.cke_button:after,
a.cke_button:before {
  display: none !important;
}

input.cke_dialog_ui_input_text,
input.cke_dialog_ui_input_password {
  background-color: white !important;
  color: black !important;
}

.ckeditor-dialog-loading,
.ckeditor-dialog-loading * {
  background-color: #f2f2f2 !important;
  color: #363636 !important;
  border-color: #eeeeee !important;
}
/*# sourceMappingURL=color.css.map */

File

at_theme_generator/starterkits/starterkit/styles/css/components/color.css
View source
  1. /**
  2. * Colors
  3. * - Add or modify colors for all theme elements.
  4. * - Most colors are set in _variables.scss where you can make global changes
  5. * without touching this file at all.
  6. * - If your theme is using the Color module be very careful about what you
  7. * change in this file, or in the global _variables.scss file, the color
  8. * schemes expect certain hex values to exist in the color.css file - it is
  9. * safer to place colors in a partial that is not parsed by the Color module.
  10. ============================================================================ */
  11. /**
  12. * base.elements
  13. ============================================================================ */
  14. html {
  15. background-color: #333333;
  16. }
  17. body {
  18. background-color: transparent;
  19. color: #363636;
  20. }
  21. a {
  22. color: #0066cc;
  23. }
  24. a:visited {
  25. color: #0066cc;
  26. }
  27. a:active, a.active {
  28. color: #0066cc;
  29. }
  30. a:hover, a:focus {
  31. color: #0066cc;
  32. }
  33. blockquote {
  34. border-color: #cccccc;
  35. }
  36. blockquote p:first-child:before {
  37. color: #cccccc;
  38. }
  39. blockquote small {
  40. color: #5c5c5c;
  41. }
  42. blockquote.pull-right {
  43. border-right-color: #cccccc;
  44. }
  45. hr {
  46. border-color: #cccccc;
  47. }
  48. /**
  49. * Remove text-shadow in selection highlight: h5bp.com/i
  50. * These selection rule sets have to be separate.
  51. * Customize the background color to match your design.
  52. */
  53. ::-moz-selection {
  54. background-color: #b3d4fc;
  55. }
  56. ::selection {
  57. background-color: #b3d4fc;
  58. }
  59. del {
  60. color: #5c5c5c;
  61. }
  62. code,
  63. pre,
  64. var,
  65. kbd,
  66. samp {
  67. background: #f2f2f2;
  68. }
  69. /**
  70. * Web fonts
  71. ============================================================================ */
  72. /* Override Font Awesome classes. */
  73. .fa-border {
  74. border-color: #cccccc;
  75. }
  76. /* Extra classes for Font Awesome. */
  77. .fa-text-color {
  78. color: #363636;
  79. }
  80. .fa-text-color-light {
  81. color: #808080;
  82. }
  83. .fa-text-color-medium {
  84. color: #5c5c5c;
  85. }
  86. .fa-match-border {
  87. color: #cccccc;
  88. }
  89. .fa-match-border-light {
  90. color: #eeeeee;
  91. }
  92. .fa-match-link {
  93. color: #0066cc;
  94. }
  95. .fa-trans-white-25 {
  96. color: rgba(255, 255, 255, 0.25);
  97. }
  98. .fa-trans-white-50 {
  99. color: rgba(255, 255, 255, 0.5);
  100. }
  101. .fa-trans-white-75 {
  102. color: rgba(255, 255, 255, 0.75);
  103. }
  104. .fa-trans-black-25 {
  105. color: rgba(0, 0, 0, 0.25);
  106. }
  107. .fa-trans-black-50 {
  108. color: rgba(0, 0, 0, 0.5);
  109. }
  110. .fa-trans-black-75 {
  111. color: rgba(0, 0, 0, 0.75);
  112. }
  113. /**
  114. * Page
  115. * - mainly for markup that is printed directly in page.html.twig and
  116. * .l-r {}
  117. ============================================================================ */
  118. .page {
  119. background-color: #f7f7f7;
  120. }
  121. .regions {
  122. background-color: #f7f7f7;
  123. }
  124. .pr-header {
  125. color: #363636;
  126. background-color: #fafafa;
  127. }
  128. .pr-header .regions {
  129. background: inherit;
  130. }
  131. .pr-navbar {
  132. color: #ffffff;
  133. background-color: #666666;
  134. }
  135. .pr-navbar .regions {
  136. background: inherit;
  137. }
  138. .pr-navbar .menu a {
  139. color: inherit;
  140. }
  141. .pr-features {
  142. color: #363636;
  143. background-color: #d3d3d3;
  144. }
  145. .pr-features .regions {
  146. background: inherit;
  147. }
  148. .pr-subfeatures {
  149. color: #363636;
  150. background-color: #d3d3d3;
  151. }
  152. .pr-subfeatures .regions {
  153. background: inherit;
  154. }
  155. .pr-footer {
  156. color: #ffffff;
  157. background-color: #666666;
  158. }
  159. .pr-footer .regions {
  160. background: inherit;
  161. }
  162. .pr-footer .menu a {
  163. color: inherit;
  164. }
  165. .pr-footer .menu a.active, .pr-footer .menu a:hover, .pr-footer .menu a:focus {
  166. color: inherit;
  167. }
  168. /**
  169. * AT attribution message
  170. * - a toggle setting in the theme settings, you can turn it on/off using
  171. * the Markup overrides extension.
  172. ============================================================================ */
  173. .attribution .l-rw {
  174. background-color: transparent;
  175. }
  176. .attribution .attribution__link {
  177. color: #363636;
  178. }
  179. /**
  180. * Feed Icons
  181. * - icons are SVG, SEE feed-icon.html.twig in AT Core templates directory.
  182. ============================================================================ */
  183. .feed-icon-rss__path {
  184. fill: rgba(0, 0, 0, 0.6);
  185. }
  186. /**
  187. * Branding styles
  188. * - Drupal core branding block.
  189. ============================================================================ */
  190. .site-branding__name-link:link, .site-branding__name-link:visited {
  191. color: #5c5c5c;
  192. }
  193. .site-branding__name-link:hover, .site-branding__name-link:active {
  194. color: #363636;
  195. }
  196. /**
  197. * Blocks
  198. ============================================================================ */
  199. /**
  200. * Menus
  201. * - style Drupal core block menus.
  202. * - for the drop menu and other responsive menus see the mixins and the
  203. * _navbar.scss partial.
  204. ============================================================================ */
  205. .menu .menu__link {
  206. color: #0066cc;
  207. border-color: #cccccc;
  208. }
  209. .menu .menu__link:hover, .menu .menu__link:focus {
  210. color: #0066cc;
  211. }
  212. .menu .menu__link.active {
  213. color: #0066cc;
  214. }
  215. .menu__item:first-child .menu__link {
  216. border-color: #cccccc;
  217. }
  218. /**
  219. * Responsive menu styles.
  220. *
  221. * Mixins provide the basic structure and a base style (not much), the rest
  222. * is up to you, add colors, borders, padding and so on. Icons such as
  223. * the hamburger and arrows are set in variables in _variables.scss, and you
  224. * use the color variables for menus from there also.
  225. *
  226. * Menu styles are set in Appearance settings using the Responsive Menus extension.
  227. * There you select a block, breakpoint, a default style and a responsive style.
  228. * You can safely remove mixins from this file if you not going to use them later
  229. * on, and want to save a few bytes in stylesheet size.
  230. *
  231. * Each mixin takes one or more parameters. Use these to customize the basic structure
  232. * of the menu, or call options, for example you can place the offcanvas menu on the
  233. * left or right.
  234. *
  235. * Do not import into breakpoints unless you are not using the Responsive Menu
  236. * settings in Appearance Extensions, in which case you will need to load the
  237. * at_core/at.responsivemenus library and provide it's required drupalSettings.
  238. *
  239. * Breakpoints are handled in matchMedia using Enquire.
  240. *
  241. * Responsive styles are a combination of three things:
  242. * 1. Sass/CSS defined here (with breakpoints etc).
  243. * 2. jQuery: responsive-menus.js in AT Core libraries which adds/toggles classes.
  244. * 3. Theme settings as set in your themes Advanced extension settings.
  245. ============================================================================ */
  246. .rm-toggle__link, .rm-toggle__link:hover, .rm-toggle__link:focus, .rm-toggle__link:active {
  247. color: #ffffff;
  248. background-color: #666666;
  249. }
  250. .rm-toggle__icon {
  251. fill: #ffffff;
  252. }
  253. .rm-toggle span {
  254. background-color: transparent;
  255. }
  256. .ms-offcanvas .rm-block__content .menu .menu__link,
  257. .ms-offcanvas .rm-block__content .menu .rm-accordion-trigger,
  258. .ms-vertical .rm-block__content .menu .menu__link,
  259. .ms-vertical .rm-block__content .menu .rm-accordion-trigger,
  260. .ms-slidedown .rm-block__content .menu .menu__link,
  261. .ms-slidedown .rm-block__content .menu .rm-accordion-trigger,
  262. .ms-tiles .rm-block__content .menu .menu__link,
  263. .ms-tiles .rm-block__content .menu .rm-accordion-trigger {
  264. color: #ffffff;
  265. background-color: #666666;
  266. }
  267. .ms-offcanvas .rm-block__content .menu .menu__link:hover, .ms-offcanvas .rm-block__content .menu .menu__link:focus,
  268. .ms-offcanvas .rm-block__content .menu .rm-accordion-trigger:hover,
  269. .ms-offcanvas .rm-block__content .menu .rm-accordion-trigger:focus,
  270. .ms-vertical .rm-block__content .menu .menu__link:hover,
  271. .ms-vertical .rm-block__content .menu .menu__link:focus,
  272. .ms-vertical .rm-block__content .menu .rm-accordion-trigger:hover,
  273. .ms-vertical .rm-block__content .menu .rm-accordion-trigger:focus,
  274. .ms-slidedown .rm-block__content .menu .menu__link:hover,
  275. .ms-slidedown .rm-block__content .menu .menu__link:focus,
  276. .ms-slidedown .rm-block__content .menu .rm-accordion-trigger:hover,
  277. .ms-slidedown .rm-block__content .menu .rm-accordion-trigger:focus,
  278. .ms-tiles .rm-block__content .menu .menu__link:hover,
  279. .ms-tiles .rm-block__content .menu .menu__link:focus,
  280. .ms-tiles .rm-block__content .menu .rm-accordion-trigger:hover,
  281. .ms-tiles .rm-block__content .menu .rm-accordion-trigger:focus {
  282. color: #ffffff;
  283. background-color: #757575;
  284. }
  285. .ms-offcanvas .rm-block__content .menu .menu__link.is-active,
  286. .ms-vertical .rm-block__content .menu .menu__link.is-active,
  287. .ms-slidedown .rm-block__content .menu .menu__link.is-active,
  288. .ms-tiles .rm-block__content .menu .menu__link.is-active {
  289. color: #ffffff;
  290. background-color: #757575;
  291. }
  292. .ms-offcanvas .rm-block__content .menu .menu__link.is-active[href="/"],
  293. .ms-vertical .rm-block__content .menu .menu__link.is-active[href="/"],
  294. .ms-slidedown .rm-block__content .menu .menu__link.is-active[href="/"],
  295. .ms-tiles .rm-block__content .menu .menu__link.is-active[href="/"] {
  296. color: #ffffff;
  297. background-color: #666666;
  298. }
  299. .ms-offcanvas .rm-block__content .menu .menu__link.is-active[href="/"]:hover, .ms-offcanvas .rm-block__content .menu .menu__link.is-active[href="/"]:focus,
  300. .ms-vertical .rm-block__content .menu .menu__link.is-active[href="/"]:hover,
  301. .ms-vertical .rm-block__content .menu .menu__link.is-active[href="/"]:focus,
  302. .ms-slidedown .rm-block__content .menu .menu__link.is-active[href="/"]:hover,
  303. .ms-slidedown .rm-block__content .menu .menu__link.is-active[href="/"]:focus,
  304. .ms-tiles .rm-block__content .menu .menu__link.is-active[href="/"]:hover,
  305. .ms-tiles .rm-block__content .menu .menu__link.is-active[href="/"]:focus {
  306. color: #ffffff;
  307. background-color: #757575;
  308. }
  309. .ms-offcanvas .rm-block__content .rm-accordion-trigger__icon,
  310. .ms-vertical .rm-block__content .rm-accordion-trigger__icon,
  311. .ms-slidedown .rm-block__content .rm-accordion-trigger__icon,
  312. .ms-tiles .rm-block__content .rm-accordion-trigger__icon {
  313. background-color: transparent !important;
  314. fill: #ffffff;
  315. }
  316. .ms-slidedown .rm-row,
  317. .ms-slidedown .rm-region {
  318. background-color: #fafafa;
  319. }
  320. .ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link,
  321. .ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link {
  322. color: inherit;
  323. background-color: transparent;
  324. }
  325. .ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link:hover, .ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link:focus,
  326. .ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link:hover,
  327. .ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link:focus {
  328. color: #ffffff;
  329. background-color: #757575;
  330. }
  331. .ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link.is-active,
  332. .ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link.is-active {
  333. color: #ffffff;
  334. background-color: #757575;
  335. }
  336. .ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"],
  337. .ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"] {
  338. color: inherit;
  339. background-color: transparent;
  340. }
  341. .ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"]:hover, .ms-dropmenu .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"]:focus,
  342. .ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"]:hover,
  343. .ms-horizontal .rm-block__content .menu-level-1 > li > span > .menu__link.is-active[href="/"]:focus {
  344. color: #ffffff;
  345. background-color: #757575;
  346. }
  347. .ms-dropmenu .rm-block__content .menu-level-2 .menu__link,
  348. .ms-horizontal .rm-block__content .menu-level-2 .menu__link {
  349. color: #ffffff;
  350. background-color: #666666;
  351. }
  352. .ms-dropmenu .rm-block__content .menu-level-2 .menu__link:hover, .ms-dropmenu .rm-block__content .menu-level-2 .menu__link:focus,
  353. .ms-horizontal .rm-block__content .menu-level-2 .menu__link:hover,
  354. .ms-horizontal .rm-block__content .menu-level-2 .menu__link:focus {
  355. color: #ffffff;
  356. background-color: #757575;
  357. }
  358. .ms-dropmenu .rm-block__content .menu-level-2 .menu__link.is-active,
  359. .ms-horizontal .rm-block__content .menu-level-2 .menu__link.is-active {
  360. color: #ffffff;
  361. background-color: #757575;
  362. }
  363. .ms-overlay .rm-toggle {
  364. background-color: rgba(0, 0, 0, 0.875);
  365. }
  366. .ms-overlay .rm-toggle:hover, .ms-overlay .rm-toggle:focus {
  367. background-color: rgba(0, 0, 0, 0.95);
  368. }
  369. .ms-overlay .rm-toggle__link, .ms-overlay .rm-toggle__icon {
  370. background-color: transparent;
  371. }
  372. .ms-overlay .rm-toggle__link:hover, .ms-overlay .rm-toggle__link:focus, .ms-overlay .rm-toggle__icon:hover, .ms-overlay .rm-toggle__icon:focus {
  373. background-color: transparent;
  374. }
  375. .ms-overlay.rm-is-open .rm-toggle {
  376. opacity: 1;
  377. background-color: white;
  378. }
  379. .ms-overlay.rm-is-open .rm-toggle__icon {
  380. fill: black;
  381. }
  382. .ms-overlay .rm-block__content {
  383. background-color: rgba(0, 0, 0, 0.8);
  384. }
  385. .ms-overlay .rm-block__content .menu {
  386. background-color: transparent;
  387. }
  388. .ms-overlay .rm-block__content .menu .menu__link {
  389. color: white;
  390. background-color: rgba(0, 0, 0, 0.95);
  391. }
  392. .ms-overlay .rm-block__content .menu .menu__link:hover, .ms-overlay .rm-block__content .menu .menu__link:focus, .ms-overlay .rm-block__content .menu .menu__link.is-active {
  393. background-color: rgba(0, 0, 0, 0.75);
  394. }
  395. .ms-overlay .rm-block__content .menu .menu__link.is-active[href="/"] {
  396. background-color: rgba(0, 0, 0, 0.75);
  397. }
  398. .ms-overlay .rm-block__content .menu .menu__link.is-active[href="/"]:hover, .ms-overlay .rm-block__content .menu .menu__link.is-active[href="/"]:focus {
  399. background-color: rgba(0, 0, 0, 0.75);
  400. }
  401. .ms-overlay .rm-block__content .menu .rm-accordion-trigger {
  402. background-color: rgba(0, 0, 0, 0.95);
  403. }
  404. .ms-overlay .rm-block__content .menu .rm-accordion-trigger:hover, .ms-overlay .rm-block__content .menu .rm-accordion-trigger:focus {
  405. background-color: rgba(0, 0, 0, 0.75);
  406. }
  407. .ms-overlay .rm-block__content .menu .rm-accordion-trigger__icon {
  408. fill: white;
  409. }
  410. .ms-meganav .rm-block__content .menu .menu__link {
  411. color: inherit;
  412. background-color: transparent;
  413. }
  414. .ms-meganav .rm-block__content .menu .menu__link:hover, .ms-meganav .rm-block__content .menu .menu__link:focus {
  415. color: #ffffff;
  416. background-color: #757575;
  417. }
  418. .ms-meganav.rm-is-open .rm-block__content .menu-level-1 > .menu__item {
  419. border-bottom: 1px solid #cccccc;
  420. }
  421. .ms-meganav.rm-is-open .rm-block__content .menu-level-1 > .menu__item > span > .menu__link {
  422. color: #ffffff;
  423. background-color: #666666;
  424. }
  425. .ms-meganav.rm-is-open .rm-block__content .menu-level-1 > .menu__item > span > .menu__link:hover, .ms-meganav.rm-is-open .rm-block__content .menu-level-1 > .menu__item > span > .menu__link:focus {
  426. color: #ffffff;
  427. background-color: #757575;
  428. }
  429. /**
  430. * Breadcrumbs
  431. ============================================================================ */
  432. .breadcrumb li:before {
  433. color: #cccccc;
  434. }
  435. .breadcrumb a {
  436. color: #0066cc;
  437. text-decoration: none;
  438. }
  439. /**
  440. * Pagers
  441. * - Full system pager.
  442. * - Views mini pager.
  443. ============================================================================ */
  444. .pager__link {
  445. border-color: #cccccc;
  446. }
  447. .pager__link:focus, .pager__link:hover {
  448. background-color: rgba(255, 255, 255, 0.75);
  449. }
  450. .pager__link:active {
  451. box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.75);
  452. opacity: 0.9;
  453. }
  454. .pager__link--is-active {
  455. background-color: rgba(255, 255, 255, 0.75);
  456. }
  457. .pager--mini .pager__link--is-active {
  458. background-color: transparent;
  459. opacity: 0.65;
  460. }
  461. /**
  462. * Table Theme
  463. * Style Drupal selectors for tables.
  464. ============================================================================ */
  465. tr:hover {
  466. background-color: #ededed;
  467. }
  468. thead tr {
  469. color: #363636;
  470. background-color: #e8e8e8;
  471. }
  472. tr,
  473. td,
  474. th {
  475. border-color: #cccccc;
  476. }
  477. /**
  478. * Forms
  479. * - This probably seems like a lot - remember AT unsets system.theme.css and
  480. * gives you complete control over all form elements.
  481. *
  482. * Note:
  483. * - input type submit is treated as a 'button', see _buttons.scss
  484. * - for drop buttons see _buttons.scss
  485. ============================================================================ */
  486. textarea,
  487. select,
  488. input[type="date"],
  489. input[type="datetime"],
  490. input[type="datetime-local"],
  491. input[type="email"],
  492. input[type="month"],
  493. input[type="number"],
  494. input[type="password"],
  495. input[type="search"],
  496. input[type="tel"],
  497. input[type="text"],
  498. input[type="time"],
  499. input[type="url"],
  500. input[type="week"] {
  501. color: #363636;
  502. border-color: #cccccc;
  503. background-color: #ffffff;
  504. }
  505. textarea:focus,
  506. select:focus,
  507. input[type="date"]:focus,
  508. input[type="datetime"]:focus,
  509. input[type="datetime-local"]:focus,
  510. input[type="email"]:focus,
  511. input[type="month"]:focus,
  512. input[type="number"]:focus,
  513. input[type="password"]:focus,
  514. input[type="search"]:focus,
  515. input[type="tel"]:focus,
  516. input[type="text"]:focus,
  517. input[type="time"]:focus,
  518. input[type="url"]:focus,
  519. input[type="week"]:focus {
  520. border-color: #cccccc;
  521. color: #363636;
  522. }
  523. textarea:hover, textarea:focus,
  524. select:hover,
  525. select:focus,
  526. input[type="date"]:hover,
  527. input[type="date"]:focus,
  528. input[type="datetime"]:hover,
  529. input[type="datetime"]:focus,
  530. input[type="datetime-local"]:hover,
  531. input[type="datetime-local"]:focus,
  532. input[type="email"]:hover,
  533. input[type="email"]:focus,
  534. input[type="month"]:hover,
  535. input[type="month"]:focus,
  536. input[type="number"]:hover,
  537. input[type="number"]:focus,
  538. input[type="password"]:hover,
  539. input[type="password"]:focus,
  540. input[type="search"]:hover,
  541. input[type="search"]:focus,
  542. input[type="tel"]:hover,
  543. input[type="tel"]:focus,
  544. input[type="text"]:hover,
  545. input[type="text"]:focus,
  546. input[type="time"]:hover,
  547. input[type="time"]:focus,
  548. input[type="url"]:hover,
  549. input[type="url"]:focus,
  550. input[type="week"]:hover,
  551. input[type="week"]:focus {
  552. background-color: #ffffff;
  553. }
  554. textarea[disabled]:hover, textarea[disabled]:focus,
  555. select[disabled]:hover,
  556. select[disabled]:focus,
  557. input[type="date"][disabled]:hover,
  558. input[type="date"][disabled]:focus,
  559. input[type="datetime"][disabled]:hover,
  560. input[type="datetime"][disabled]:focus,
  561. input[type="datetime-local"][disabled]:hover,
  562. input[type="datetime-local"][disabled]:focus,
  563. input[type="email"][disabled]:hover,
  564. input[type="email"][disabled]:focus,
  565. input[type="month"][disabled]:hover,
  566. input[type="month"][disabled]:focus,
  567. input[type="number"][disabled]:hover,
  568. input[type="number"][disabled]:focus,
  569. input[type="password"][disabled]:hover,
  570. input[type="password"][disabled]:focus,
  571. input[type="search"][disabled]:hover,
  572. input[type="search"][disabled]:focus,
  573. input[type="tel"][disabled]:hover,
  574. input[type="tel"][disabled]:focus,
  575. input[type="text"][disabled]:hover,
  576. input[type="text"][disabled]:focus,
  577. input[type="time"][disabled]:hover,
  578. input[type="time"][disabled]:focus,
  579. input[type="url"][disabled]:hover,
  580. input[type="url"][disabled]:focus,
  581. input[type="week"][disabled]:hover,
  582. input[type="week"][disabled]:focus {
  583. color: #363636;
  584. }
  585. /**
  586. * Collapsible details.
  587. *
  588. * @see collapse.js
  589. * @thanks http://nicolasgallagher.com/css-background-image-hacks/
  590. */
  591. details {
  592. border-color: #cccccc;
  593. background-color: #f7f7f7;
  594. }
  595. input[readonly],
  596. select[readonly],
  597. textarea[readonly] {
  598. background-color: #ededed;
  599. color: #363636;
  600. }
  601. button[disabled],
  602. input[disabled],
  603. select[disabled],
  604. select[disabled] option,
  605. select[disabled] optgroup,
  606. textarea[disabled],
  607. a.button_disabled {
  608. background-color: #ededed;
  609. color: #363636;
  610. }
  611. input::-webkit-input-placeholder,
  612. textarea::-webkit-input-placeholder {
  613. color: #363636;
  614. }
  615. input:-moz-placeholder,
  616. textarea:-moz-placeholder {
  617. color: #363636;
  618. }
  619. input.placeholder_text,
  620. textarea.placeholder_text {
  621. color: #363636;
  622. }
  623. /**
  624. * Form Theme
  625. ============================================================================ */
  626. .form-type-radio label.option,
  627. .form-type-checkbox label.option {
  628. border-color: #cccccc;
  629. background-color: #ffffff;
  630. }
  631. .form-type-radio label.option:focus, .form-type-radio label.option:hover,
  632. .form-type-checkbox label.option:focus,
  633. .form-type-checkbox label.option:hover {
  634. background-color: rgba(255, 255, 255, 0.75);
  635. }
  636. .filter-wrapper {
  637. border-color: #cccccc;
  638. }
  639. .tips {
  640. color: #363636;
  641. }
  642. .description {
  643. color: #363636;
  644. }
  645. form .marker {
  646. color: #ee0000;
  647. }
  648. .form-required:after {
  649. color: #ee0000;
  650. }
  651. .form-item input.error,
  652. .form-item textarea.error,
  653. .form-item select.error {
  654. border-color: #f9c9bf;
  655. }
  656. /**
  657. * Vertical tabs.
  658. ============================================================================ */
  659. .vertical-tabs {
  660. background-color: #f2f2f2;
  661. border-color: #cccccc;
  662. }
  663. .vertical-tabs__menu {
  664. background-color: #ffffff;
  665. border-top-color: #cccccc;
  666. }
  667. .vertical-tabs__menu-item {
  668. background: #ffffff;
  669. border-color: #cccccc;
  670. }
  671. .vertical-tabs__menu-item.is-selected {
  672. background-color: #f2f2f2;
  673. }
  674. .vertical-tabs__menu-item.is-selected .vertical-tabs__menu-item-title {
  675. color: #363636;
  676. }
  677. .vertical-tabs__pane {
  678. background-color: #f2f2f2;
  679. }
  680. /**
  681. * Buttons
  682. * We include button styling separate (from _forms.scss) mainly because the form
  683. * styles are quite long already and we often want to add unique button variants.
  684. *
  685. * - applies to elements with class "button", includes styles for:
  686. * - input buttons
  687. * - anchor links styled as buttons
  688. * - drop buttons
  689. * - action link buttons
  690. ============================================================================ */
  691. button,
  692. .button {
  693. color: #fcfcfc;
  694. background-color: #828282;
  695. border-color: #828282;
  696. opacity: 0.9;
  697. box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  698. }
  699. button:hover, button:focus,
  700. .button:hover,
  701. .button:focus {
  702. opacity: 1;
  703. color: #fcfcfc;
  704. background-color: #828282;
  705. }
  706. button:visited,
  707. .button:visited {
  708. color: #fcfcfc;
  709. background-color: #828282;
  710. }
  711. button[disabled]:hover,
  712. .button[disabled]:hover {
  713. opacity: 1;
  714. }
  715. .button--primary {
  716. color: #fcfcfc;
  717. background-color: #0066cc;
  718. border: 1px #0066cc solid;
  719. }
  720. .button--primary:link, .button--primary:visited {
  721. color: #fcfcfc;
  722. background-color: #0066cc;
  723. border-color: #0066cc;
  724. }
  725. .button--primary:hover, .button--primary:focus, .button--primary:active, .button--primary.active {
  726. color: #fcfcfc;
  727. background-color: #0066cc;
  728. border-color: #0066cc;
  729. }
  730. .button--danger {
  731. color: #a51b00;
  732. background-color: transparent;
  733. box-shadow: none;
  734. }
  735. .button--danger:link, .button--danger:visited {
  736. color: #a51b00;
  737. background-color: transparent;
  738. border-color: transparent;
  739. }
  740. .button--danger:hover, .button--danger:focus, .button--danger:active, .button--danger.active {
  741. color: #a51b00;
  742. background-color: transparent;
  743. border-color: transparent;
  744. }
  745. .button-action {
  746. opacity: 1;
  747. }
  748. #edit-preview {
  749. background-color: #ffffff;
  750. color: #828282;
  751. }
  752. button.link-edit-summary {
  753. background-color: inherit;
  754. color: #363636;
  755. }
  756. button.link-edit-summary:hover, button.link-edit-summary:focus {
  757. background-color: inherit;
  758. color: #363636;
  759. }
  760. /* Drop buttons */
  761. .dropbutton-widget {
  762. background-color: #f7f7f7;
  763. border-color: #828282;
  764. }
  765. .dropbutton-widget:hover, .dropbutton-widget:focus {
  766. border-color: #828282;
  767. }
  768. .dropbutton .dropbutton-action .button {
  769. color: #fcfcfc;
  770. background-color: #0066cc;
  771. }
  772. .dropbutton .dropbutton-action .button:link, .dropbutton .dropbutton-action .button:visited {
  773. color: #fcfcfc;
  774. background-color: #0066cc;
  775. border-color: #ccc;
  776. }
  777. .dropbutton .dropbutton-action .button:hover, .dropbutton .dropbutton-action .button:focus, .dropbutton .dropbutton-action .button:active, .dropbutton .dropbutton-action .button.active {
  778. color: #fcfcfc;
  779. background-color: #0066cc;
  780. border-color: #ccc;
  781. }
  782. .dropbutton .secondary-action {
  783. border-top-color: #828282;
  784. }
  785. .dropbutton .secondary-action .button {
  786. background-color: #f7f7f7;
  787. color: #828282;
  788. }
  789. .dropbutton .dropbutton-toggle button:hover {
  790. background-color: transparent;
  791. }
  792. .dropbutton-multiple .dropbutton {
  793. border-right-color: #828282;
  794. }
  795. [dir="rtl"] .dropbutton-multiple .dropbutton {
  796. border-left-color: #828282;
  797. }
  798. .dropbutton-multiple.open .dropbutton-action .button {
  799. border-radius: 2px 0 0 0;
  800. }
  801. .dropbutton-arrow {
  802. color: #828282;
  803. }
  804. /**
  805. * Modal dialogs.
  806. * - override jQuery UI styles.
  807. ============================================================================ */
  808. .ui-widget-overlay {
  809. background: rgba(0, 0, 0, 0.95);
  810. opacity: 0.3;
  811. }
  812. .ui-dialog .form-text {
  813. background-color: inherit !important;
  814. color: black !important;
  815. border-color: silver !important;
  816. }
  817. .ui-dialog .form-text::-webkit-input-placeholder {
  818. color: silver;
  819. }
  820. .ui-dialog .form-text::-moz-placeholder {
  821. color: silver;
  822. }
  823. .ui-dialog .form-text:-ms-input-placeholder {
  824. color: silver;
  825. }
  826. .ui-dialog .form-text::placeholder {
  827. color: silver;
  828. }
  829. .ui-dialog .form-type-radio label.option,
  830. .ui-dialog .form-type-checkbox label.option {
  831. border-color: transparent;
  832. background-color: inherit;
  833. }
  834. .ui-dialog .form-type-radio label.option:focus, .ui-dialog .form-type-radio label.option:hover,
  835. .ui-dialog .form-type-checkbox label.option:focus,
  836. .ui-dialog .form-type-checkbox label.option:hover {
  837. color: inherit;
  838. background-color: inherit;
  839. }
  840. .ui-dialog .ui-dialog-titlebar {
  841. color: #363636;
  842. }
  843. .ui-dialog .ui-dialog-buttonpane button {
  844. color: #fcfcfc;
  845. background: #828282;
  846. border-color: #828282;
  847. opacity: 0.9;
  848. box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  849. }
  850. .ui-dialog .ui-dialog-buttonpane button:hover, .ui-dialog .ui-dialog-buttonpane button:focus {
  851. opacity: 1;
  852. color: #fcfcfc;
  853. background: #828282;
  854. }
  855. .ui-dialog .ui-dialog-buttonpane button:visited {
  856. color: #fcfcfc;
  857. background: #828282;
  858. }
  859. .ui-dialog .ui-dialog-buttonpane button[disabled]:hover {
  860. opacity: 1;
  861. }
  862. .ui-dialog .ui-dialog-buttonpane .button--primary {
  863. color: #fcfcfc;
  864. background-color: #0066cc;
  865. border: 1px #0066cc solid;
  866. }
  867. .ui-dialog .ui-dialog-buttonpane .button--primary:link, .ui-dialog .ui-dialog-buttonpane .button--primary:visited {
  868. color: #fcfcfc;
  869. background-color: #0066cc;
  870. border-color: #0066cc;
  871. }
  872. .ui-dialog .ui-dialog-buttonpane .button--primary:hover, .ui-dialog .ui-dialog-buttonpane .button--primary:focus, .ui-dialog .ui-dialog-buttonpane .button--primary:active, .ui-dialog .ui-dialog-buttonpane .button--primary.active {
  873. color: #fcfcfc;
  874. background-color: #0066cc;
  875. border-color: #0066cc;
  876. }
  877. /**
  878. * File icons
  879. * AT un-sets Drupal core file field CSS for image icons and replaces them
  880. * with FontAwesome icons.
  881. ============================================================================ */
  882. .file a:before {
  883. color: #808080;
  884. }
  885. /**
  886. * File upload widgets.
  887. ============================================================================ */
  888. .field--widget-file-generic,
  889. .field--widget-image-image {
  890. background-color: #ffffff;
  891. border-color: #cccccc;
  892. }
  893. .field--widget-file-generic details,
  894. .field--widget-image-image details {
  895. background: transparent;
  896. }
  897. .field--widget-image-image .image-preview {
  898. background-color: transparent;
  899. }
  900. /**
  901. * Field Taxonomy Reference
  902. ============================================================================ */
  903. /**
  904. * Labels.
  905. * - for example "new" mark on comments, tags etc.
  906. ============================================================================ */
  907. .filter-help a:after,
  908. .more-help-link a:after {
  909. color: #cccccc;
  910. }
  911. /**
  912. * Messages
  913. * - System messages such as status, warning and error are NOT included
  914. * here as we don't want them to shift or change in color module, since
  915. * they are too important with regards to accessibility etc.
  916. ============================================================================ */
  917. .dev-query {
  918. color: #f7f7f7;
  919. }
  920. body > pre,
  921. .xdebug-var-dump {
  922. color: #f7f7f7;
  923. }
  924. .page .xdebug-var-dump {
  925. color: #363636;
  926. }
  927. body:before {
  928. color: #a51b00;
  929. }
  930. /**
  931. * Content Types (nodes)
  932. * - in Drupal a content type is a bunch of fields we use to enter and display
  933. * content, such as pages, blog posts, forum posts and so on. Each of those
  934. * is usually a content type you create in the Drupal admin.
  935. * - an instance of a content type (e.g. a single blog post) is called a node,
  936. * the root template is called node.html.twg and the base selector is .node {}
  937. ============================================================================ */
  938. .node {
  939. background-color: #ffffff;
  940. box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
  941. }
  942. .node--sticky {
  943. background-color: transparent;
  944. box-shadow: none;
  945. }
  946. /**
  947. * Node Add Edit Forms.
  948. ============================================================================ */
  949. .layout-region-node-secondary__inner {
  950. border-color: #cccccc;
  951. background-color: #ffffff;
  952. }
  953. .layout-region-node-secondary__inner .entity-meta details[open] {
  954. box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.085);
  955. }
  956. .layout-region-node-secondary__inner .entity-meta details[open] > summary {
  957. background-color: rgba(0, 0, 0, 0.025);
  958. }
  959. /**
  960. * Aggregator
  961. ============================================================================ */
  962. .aggregator-item {
  963. background-color: #ffffff;
  964. box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
  965. }
  966. /**
  967. * Forums
  968. * - see table.scss for generic table styles.
  969. ============================================================================ */
  970. .forum .icon svg {
  971. fill: rgba(0, 0, 0, 0.5);
  972. }
  973. /**
  974. * Search results pages
  975. ============================================================================ */
  976. .item-list--search-results {
  977. background-color: #ffffff;
  978. box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
  979. }
  980. .search-result__snippet-info {
  981. color: #5c5c5c;
  982. }
  983. /**
  984. * Comments
  985. * - comment field (holds comment title, form, comments etc)
  986. * - styles for comments
  987. ============================================================================ */
  988. .comment {
  989. border-color: #eeeeee;
  990. }
  991. /**
  992. * Social media
  993. * - styles for socila media links, modules etc.
  994. ============================================================================ */
  995. .block-social-media-links .platform__link,
  996. .pane-social-media-link-widget .platform__link {
  997. color: #363636;
  998. opacity: 0.65;
  999. }
  1000. .block-social-media-links .platform__link:hover, .block-social-media-links .platform__link:focus,
  1001. .pane-social-media-link-widget .platform__link:hover,
  1002. .pane-social-media-link-widget .platform__link:focus {
  1003. opacity: 1;
  1004. }
  1005. /**
  1006. * Views
  1007. ============================================================================ */
  1008. .view-empty:not(:empty) .links a[href="/node/add"] {
  1009. opacity: 0.9;
  1010. box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
  1011. color: #fcfcfc;
  1012. background-color: #0066cc;
  1013. border: 1px #0066cc solid;
  1014. }
  1015. .view-empty:not(:empty) .links a[href="/node/add"]:hover, .view-empty:not(:empty) .links a[href="/node/add"]:focus {
  1016. opacity: 1;
  1017. }
  1018. .view-empty:not(:empty) .links a[href="/node/add"][disabled]:hover {
  1019. opacity: 1;
  1020. }
  1021. .view-empty:not(:empty) .links a[href="/node/add"]:link, .view-empty:not(:empty) .links a[href="/node/add"]:visited {
  1022. color: #fcfcfc;
  1023. background-color: #0066cc;
  1024. border-color: #0066cc;
  1025. }
  1026. .view-empty:not(:empty) .links a[href="/node/add"]:hover, .view-empty:not(:empty) .links a[href="/node/add"]:focus, .view-empty:not(:empty) .links a[href="/node/add"]:active, .view-empty:not(:empty) .links a[href="/node/add"].active {
  1027. color: #fcfcfc;
  1028. background-color: #0066cc;
  1029. border-color: #0066cc;
  1030. }
  1031. /**
  1032. * CKEditor Colors
  1033. * Pretty brutal, but effective, combines with other editor partials and files,
  1034. * mainly for Mimic but will color borders for moono also.
  1035. ============================================================================ */
  1036. .cke_chrome {
  1037. border-color: #cccccc !important;
  1038. border-top-color: #cccccc !important;
  1039. border-bottom-color: #cccccc !important;
  1040. color: #363636 !important;
  1041. }
  1042. .cke_top {
  1043. border-bottom-color: #cccccc !important;
  1044. background-color: #f7f7f7 !important;
  1045. color: #363636 !important;
  1046. }
  1047. .cke_bottom {
  1048. border-top-color: #cccccc !important;
  1049. background-color: #f7f7f7 !important;
  1050. color: #363636 !important;
  1051. }
  1052. .cke_editable,
  1053. textarea.cke_source,
  1054. .cke_combopanel {
  1055. background-color: #ffffff !important;
  1056. color: #363636 !important;
  1057. }
  1058. .cke_combo_off a.cke_combo_button,
  1059. a.cke_button_off {
  1060. color: #363636 !important;
  1061. }
  1062. .cke_combo_off a.cke_combo_button:hover, .cke_combo_off a.cke_combo_button:focus, .cke_combo_off a.cke_combo_button:active,
  1063. a.cke_button_off:hover,
  1064. a.cke_button_off:focus,
  1065. a.cke_button_off:active {
  1066. background-color: #f2f2f2 !important;
  1067. color: #363636 !important;
  1068. }
  1069. .cke_combo_on a.cke_combo_button,
  1070. a.cke_button_on {
  1071. background-color: #f2f2f2 !important;
  1072. color: #363636 !important;
  1073. }
  1074. .cke_combo_on a.cke_combo_button:hover, .cke_combo_on a.cke_combo_button:focus, .cke_combo_on a.cke_combo_button:active,
  1075. a.cke_button_on:hover,
  1076. a.cke_button_on:focus,
  1077. a.cke_button_on:active {
  1078. background-color: #f2f2f2 !important;
  1079. color: #363636 !important;
  1080. }
  1081. .cke_panel,
  1082. .cke_combopanel {
  1083. background-color: #ffffff !important;
  1084. border-color: #cccccc !important;
  1085. }
  1086. .cke_combo_text {
  1087. color: #363636 !important;
  1088. }
  1089. .cke_combo_arrow {
  1090. border-top-color: #cccccc !important;
  1091. }
  1092. .cke_panel_listItem a {
  1093. color: inherit !important;
  1094. }
  1095. * html .cke_panel_listItem a {
  1096. color: #363636 !important;
  1097. }
  1098. *:first-child + html .cke_panel_listItem a {
  1099. color: #363636 !important;
  1100. }
  1101. .cke_panel_listItem.cke_selected a {
  1102. background-color: #f2f2f2 !important;
  1103. }
  1104. .cke_panel_listItem a:hover, .cke_panel_listItem a:focus, .cke_panel_listItem a:active {
  1105. background-color: #f2f2f2 !important;
  1106. color: #363636 !important;
  1107. }
  1108. .cke_reset_all,
  1109. .cke_button_icon:before {
  1110. color: #363636 !important;
  1111. }
  1112. .cke_resizer {
  1113. border-color: transparent #cccccc transparent transparent !important;
  1114. }
  1115. a.cke_menu_button:after, a.cke_menu_button:before,
  1116. a.cke_combo_button:after,
  1117. a.cke_combo_button:before,
  1118. a.cke_button:after,
  1119. a.cke_button:before {
  1120. display: none !important;
  1121. }
  1122. input.cke_dialog_ui_input_text,
  1123. input.cke_dialog_ui_input_password {
  1124. background-color: white !important;
  1125. color: black !important;
  1126. }
  1127. .ckeditor-dialog-loading,
  1128. .ckeditor-dialog-loading * {
  1129. background-color: #f2f2f2 !important;
  1130. color: #363636 !important;
  1131. border-color: #eeeeee !important;
  1132. }
  1133. /*# sourceMappingURL=color.css.map */