contrib modules updates
This commit is contained in:
@@ -6,6 +6,13 @@ base theme: seven
|
||||
|
||||
libraries:
|
||||
- adminimal_theme/global-styling
|
||||
libraries-override:
|
||||
system/base:
|
||||
css:
|
||||
component:
|
||||
/core/themes/stable/css/system/components/system-status-counter.css: /core/themes/seven/css/components/system-status-counter.css
|
||||
/core/themes/stable/css/system/components/system-status-report-counters.css: /core/themes/seven/css/components/system-status-report-counters.css
|
||||
/core/themes/stable/css/system/components/system-status-report-general-info.css: /core/themes/seven/css/components/system-status-report-general-info.css
|
||||
|
||||
regions:
|
||||
header: 'Header'
|
||||
@@ -20,8 +27,8 @@ regions:
|
||||
regions_hidden:
|
||||
- sidebar_first
|
||||
|
||||
# Information added by Drupal.org packaging script on 2016-11-30
|
||||
version: '8.x-1.3'
|
||||
# Information added by Drupal.org packaging script on 2019-01-20
|
||||
version: '8.x-1.4'
|
||||
core: '8.x'
|
||||
project: 'adminimal_theme'
|
||||
datestamp: 1480507087
|
||||
datestamp: 1547996584
|
||||
|
||||
@@ -3,3 +3,9 @@ global-styling:
|
||||
css:
|
||||
base:
|
||||
css/adminimal.css: {}
|
||||
|
||||
custom-styling:
|
||||
version: VERSION
|
||||
css:
|
||||
theme:
|
||||
public://adminimal-custom.css: {}
|
||||
|
||||
@@ -5,15 +5,102 @@
|
||||
* Functions to support theming in the Adminimal theme.
|
||||
*/
|
||||
|
||||
use Drupal\Component\Utility\Xss;
|
||||
use Drupal\Core\Form\FormStateInterface;
|
||||
|
||||
/**
|
||||
* Implements hook_preprocess_HOOK() for HTML document templates.
|
||||
*/
|
||||
function adminimal_theme_preprocess_html(&$variables) {
|
||||
|
||||
// Add adminimal class to the body.
|
||||
$variables['attributes']['class'][] = 'adminimal';
|
||||
|
||||
// Add library with custom CSS.
|
||||
if (theme_get_setting('custom_css')) {
|
||||
$variables['#attached']['library'][] = 'adminimal_theme/custom-styling';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Implements hook_form_system_theme_settings_alter().
|
||||
*/
|
||||
function adminimal_theme_form_system_theme_settings_alter(&$form, \Drupal\Core\Form\FormStateInterface &$form_state, $form_id = NULL) {
|
||||
// Work-around for a core bug affecting admin themes. See issue #943212.
|
||||
if (isset($form_id)) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Get adminimal theme path.
|
||||
global $base_url;
|
||||
$adminimal_path = drupal_get_path('theme', 'adminimal_theme');
|
||||
$old_css_path = $adminimal_path . '/css/custom.css';
|
||||
$custom_css_path = 'public://adminimal-custom.css';
|
||||
$custom_css_dir = str_replace($base_url . '/', "", file_create_url($custom_css_path));
|
||||
$custom_css_url = file_create_url($custom_css_path);
|
||||
|
||||
// Try to create the adminimal-custom.css file automatically.
|
||||
if (!file_exists($custom_css_path)) {
|
||||
|
||||
// Try to migrate from the old css.
|
||||
if (file_exists($old_css_path)) {
|
||||
file_unmanaged_copy($old_css_path, $custom_css_path, FILE_EXISTS_ERROR);
|
||||
}
|
||||
// Else create a new blank css file.
|
||||
else {
|
||||
file_unmanaged_save_data("", $custom_css_path, FILE_EXISTS_ERROR);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Notify user to remove his old css file.
|
||||
if (file_exists($old_css_path)) {
|
||||
drupal_set_message(t('Please delete the old @css_location file, as its no longer used.', ['@css_location file' => $old_css_path]), 'warning');
|
||||
}
|
||||
|
||||
$form['adminimal_custom'] = [
|
||||
'#type' => 'fieldset',
|
||||
'#title' => t('Adminimal Customization'),
|
||||
'#weight' => -10,
|
||||
];
|
||||
|
||||
$form['adminimal_custom']['custom_css'] = [
|
||||
'#type' => 'checkbox',
|
||||
'#title' => t('Use "adminimal-custom.css"'),
|
||||
'#description' => t('Include adminimal-custom.css file to override or add custom css code without subthememing/hacking Adminimal Theme.'),
|
||||
'#default_value' => theme_get_setting('custom_css'),
|
||||
];
|
||||
|
||||
$form['adminimal_custom']['adminimal_custom_check'] = [
|
||||
'#type' => 'fieldset',
|
||||
'#title' => t('Custom CSS file check'),
|
||||
'#weight' => 50,
|
||||
'#states' => [
|
||||
// Hide the settings when the cancel notify checkbox is disabled.
|
||||
'visible' => [
|
||||
':input[name="custom_css"]' => ['checked' => TRUE],
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
if (file_exists($custom_css_path)) {
|
||||
$form['adminimal_custom']['adminimal_custom_check']['custom_css_description'] = [
|
||||
'#type' => 'container',
|
||||
'#attributes' => [
|
||||
'class' => ['messages', 'messages--status'],
|
||||
],
|
||||
'message' => [
|
||||
'#markup' => t('Custom CSS file Found in: @css', ['@css' => $custom_css_dir]),
|
||||
],
|
||||
];
|
||||
}
|
||||
else {
|
||||
$form['adminimal_custom']['adminimal_custom_check']['custom_css_not_found'] = [
|
||||
'#type' => 'container',
|
||||
'#attributes' => [
|
||||
'class' => ['messages', 'messages--error'],
|
||||
],
|
||||
'message' => [
|
||||
'#markup' => t('Custom CSS file not found. You must create the @css file manually.', ['@css' => $custom_css_dir]),
|
||||
],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "drupal/adminimal_theme",
|
||||
"description": "Drupal administration theme with modern minimalist design.",
|
||||
"type": "drupal-theme",
|
||||
"homepage": "https://www.drupal.org/project/adminimal_theme",
|
||||
"support": {
|
||||
"issues": "https://www.drupal.org/project/issues/adminimal_theme"
|
||||
},
|
||||
"license": "GPL-2.0+"
|
||||
}
|
||||
@@ -35,12 +35,11 @@ body.adminimal {
|
||||
|
||||
.adminimal h1,
|
||||
.adminimal .heading-a {
|
||||
font-weight: 300;
|
||||
margin-bottom: 19px;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 2.35em;
|
||||
line-height: 1.2em;
|
||||
color: #fff;
|
||||
font-size: 2.35em;
|
||||
font-weight: 300;
|
||||
line-height: 1.2em;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.adminimal .content-header {
|
||||
@@ -48,24 +47,18 @@ body.adminimal {
|
||||
padding: 1rem 0 0;
|
||||
}
|
||||
|
||||
.adminimal.toolbar-tray-open.toolbar-fixed.toolbar-horizontal {
|
||||
padding-top: 4rem !important;
|
||||
}
|
||||
|
||||
.adminimal thead th {
|
||||
border: none;
|
||||
color: #909090;
|
||||
text-transform: none;
|
||||
font-weight: 500;
|
||||
font-size: 0.91rem;
|
||||
font-weight: 500;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.adminimal thead th.is-active {
|
||||
background: #fff;
|
||||
border: 1px solid #e6e4df;
|
||||
border-bottom: 1px solid #fff;
|
||||
border-top: 1px solid #E6E4DF;
|
||||
border-left: 1px solid #E6E4DF;
|
||||
border-right: 1px solid #E6E4DF;
|
||||
}
|
||||
|
||||
.adminimal th.is-active > a,
|
||||
@@ -83,7 +76,7 @@ body.adminimal {
|
||||
}
|
||||
|
||||
.adminimal thead > tr {
|
||||
border-bottom: 1px solid #E6E4DF;
|
||||
border-bottom: 1px solid #e6e4df;
|
||||
}
|
||||
|
||||
.adminimal .tabs__tab {
|
||||
@@ -92,7 +85,6 @@ body.adminimal {
|
||||
|
||||
.adminimal .tabs.primary {
|
||||
margin: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.adminimal .tabs.primary .tabs__tab.is-active {
|
||||
@@ -109,7 +101,7 @@ body.adminimal {
|
||||
|
||||
[dir="rtl"] .is-collapse-enabled .tabs__trigger {
|
||||
border-left: 1px solid transparent;
|
||||
border-radius: 0 0 0 0;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.adminimal .is-open .tabs__tab.is-active {
|
||||
@@ -176,9 +168,9 @@ body.adminimal {
|
||||
}
|
||||
|
||||
.adminimal .vertical-tabs {
|
||||
background: #f2f2f0;
|
||||
border-radius: 0;
|
||||
border: 1px solid #b5b5b5;
|
||||
background: #f2f2f0;
|
||||
}
|
||||
|
||||
.adminimal .vertical-tabs__panes {
|
||||
@@ -190,29 +182,37 @@ body.adminimal {
|
||||
}
|
||||
|
||||
.adminimal .vertical-tabs__menu-item a {
|
||||
border: 0 none;
|
||||
border: none;
|
||||
transition: all, 0.2s;
|
||||
}
|
||||
|
||||
.adminimal .vertical-tabs__menu-item a:hover,
|
||||
.adminimal .vertical-tabs__menu-item a:focus {
|
||||
background: #D2E7F4;
|
||||
background: #d2e7f4;
|
||||
}
|
||||
|
||||
.adminimal .vertical-tabs__menu-item.is-selected a:hover,
|
||||
.adminimal .vertical-tabs__menu-item.is-selected a:focus {
|
||||
background: #FCFCFA;
|
||||
background: #fcfcfa;
|
||||
}
|
||||
|
||||
.adminimal .vertical-tabs__menu-item.is-selected {
|
||||
border: 0 none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.adminimal .button {
|
||||
border-radius: 0;
|
||||
.adminimal .button:not(.media-library-item__remove) {
|
||||
background-image: none;
|
||||
background-color: #F9F9F9;
|
||||
}
|
||||
|
||||
.adminimal .button:not(.media-library-item__remove):hover,
|
||||
.adminimal .button:not(.media-library-item__remove):focus {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.adminimal .button {
|
||||
background-color: #f9f9f9;
|
||||
border-radius: 0;
|
||||
text-shadow: none;
|
||||
transition: all, 0.2s;
|
||||
}
|
||||
@@ -221,7 +221,6 @@ body.adminimal {
|
||||
.adminimal .button:focus {
|
||||
background-color: #FFFFFF;
|
||||
border-color: #008ee6;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.adminimal .button-action:before {
|
||||
@@ -255,22 +254,22 @@ body.adminimal {
|
||||
}
|
||||
|
||||
.adminimal .action-links .button--primary {
|
||||
color: #327EBD;
|
||||
background: #fff;
|
||||
font-size: 14px;
|
||||
padding: 0.33rem 1.33rem;
|
||||
border: 2px solid #327ebd;
|
||||
font-family: sans-serif;
|
||||
border-radius: 999px;
|
||||
color: #327ebd;
|
||||
font-family: sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
padding: 0.4rem 1.33rem;
|
||||
}
|
||||
|
||||
.adminimal .action-links .button--primary:hover,
|
||||
.adminimal .action-links .button--primary:focus {
|
||||
color: #fff;
|
||||
box-shadow: none;
|
||||
background-color: #327ebd;
|
||||
background-image: none;
|
||||
background-color: #327EBD;
|
||||
box-shadow: none;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.adminimal .action-links .button--primary:focus {
|
||||
@@ -279,11 +278,10 @@ body.adminimal {
|
||||
}
|
||||
|
||||
.adminimal .button--small {
|
||||
background: #fff;
|
||||
border-color: #cacaca;
|
||||
border-radius: 0.2rem;
|
||||
color: #b1b1b1;
|
||||
font-weight: 500;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.adminimal .button--danger {
|
||||
@@ -311,10 +309,10 @@ body.adminimal {
|
||||
background: url(../images/caret-down.svg) no-repeat 98% 64% #fcfcfa;
|
||||
}
|
||||
.adminimal select:focus {
|
||||
border-color: #68A3CF;
|
||||
outline: 2px solid #C1E0FF;
|
||||
outline-offset: 0px;
|
||||
border-color: #68a3cf;
|
||||
color: #000;
|
||||
outline: 2px solid #C1E0FF;
|
||||
outline-offset: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -330,8 +328,8 @@ body.adminimal {
|
||||
.js .adminimal .dropbutton-widget .dropbutton-action input,
|
||||
.js .adminimal .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button {
|
||||
border-radius: 0;
|
||||
font-weight: 500;
|
||||
box-shadow: none;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.js .adminimal .dropbutton-wrapper .dropbutton-widget .dropbutton-action a:hover,
|
||||
@@ -345,7 +343,7 @@ body.adminimal {
|
||||
|
||||
.js .adminimal .form-actions .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button,
|
||||
.adminimal .form-actions .dropbutton .secondary-action {
|
||||
border-color: #FFFFFF;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
|
||||
.js .adminimal .dropbutton-multiple .dropbutton-widget {
|
||||
@@ -419,7 +417,7 @@ body.adminimal {
|
||||
.js .adminimal .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:hover,
|
||||
.js .adminimal .dropbutton-wrapper .dropbutton-widget .dropbutton-toggle button:focus {
|
||||
background-image:none;
|
||||
background-color: #FFFFFF;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.adminimal .link.tabledrag-toggle-weight {
|
||||
@@ -439,8 +437,8 @@ body.adminimal {
|
||||
}
|
||||
|
||||
.adminimal .toolbar .toolbar-bar {
|
||||
background-color: #2d2d2d;
|
||||
box-shadow: none;
|
||||
background-color: #2D2D2D;
|
||||
}
|
||||
|
||||
.adminimal .toolbar .toolbar-menu {
|
||||
@@ -453,7 +451,7 @@ body.adminimal {
|
||||
}
|
||||
|
||||
.adminimal .toolbar-tray a {
|
||||
color: #BBBBBB;
|
||||
color: #bbbbbb;
|
||||
}
|
||||
|
||||
.adminimal .toolbar .toolbar-bar .toolbar-tab > .toolbar-item {
|
||||
@@ -461,12 +459,12 @@ body.adminimal {
|
||||
}
|
||||
|
||||
.adminimal .toolbar .toolbar-bar .toolbar-item {
|
||||
color: #BEBEBE;
|
||||
color: #bebebe;
|
||||
}
|
||||
|
||||
.adminimal .toolbar .toolbar-bar .toolbar-tab > .toolbar-item:hover {
|
||||
background-color: #2d2d2d;
|
||||
background-image: none;
|
||||
background-color: #2D2D2D;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
@@ -488,8 +486,8 @@ body.adminimal {
|
||||
.adminimal .toolbar .toolbar-tray .menu-item--active-trail > .toolbar-box a,
|
||||
.adminimal .toolbar .toolbar-tray a.is-active {
|
||||
color: #bbb;
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.adminimal .toolbar .toolbar-tray-vertical .menu-item + .menu-item {
|
||||
@@ -543,7 +541,7 @@ body.adminimal {
|
||||
}
|
||||
|
||||
.adminimal .toolbar .toolbar-tray-vertical .toolbar-menu a {
|
||||
color: #BBB;
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
.adminimal .toolbar .toolbar-tray-vertical .toolbar-menu a:hover {
|
||||
@@ -558,97 +556,114 @@ body.adminimal {
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Style checkbox and radio buttons in Chrome + Safari + Opera */
|
||||
/* Style checkbox and radio buttons */
|
||||
input[type=checkbox],
|
||||
input[type=radio],
|
||||
input[type=checkbox]#edit-delete {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
margin-right: 0.25em;
|
||||
padding: 0;
|
||||
background: #fff;
|
||||
border: 1px solid #b5b5b5;
|
||||
width: 16px !important;
|
||||
height: 16px !important;
|
||||
-webkit-transition: all 0.5s ease;
|
||||
-o-transition: all 0.5s ease;
|
||||
transition: background 0.5s ease;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.adminimal-theme .location .form-item input.form-checkbox {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
input[type=checkbox]#edit-delete {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
input[type=radio] {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
input[type=checkbox]:hover,
|
||||
input[type=checkbox]:focus,
|
||||
input[type=radio]:hover,
|
||||
input[type=radio]:focus {
|
||||
border-color: #0074bd;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=checkbox]#edit-delete:hover,
|
||||
input[type=checkbox]#edit-delete:focus {
|
||||
border-color: #d01616;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=checkbox]:checked,
|
||||
input[type=checkbox]:disabled:checked,
|
||||
input[type=checkbox].error:checked,
|
||||
input[type=checkbox].error:focus:checked,
|
||||
input[type=radio]:checked,
|
||||
input[type=radio]:disabled:checked,
|
||||
input[type=radio].error:checked,
|
||||
input[type=radio].error:focus:checked {
|
||||
background: #0074bd;
|
||||
box-shadow: inset 0 0 0 3px #fff;
|
||||
}
|
||||
|
||||
input[type=checkbox]#edit-delete:checked,
|
||||
input[type=checkbox]#edit-delete:disabled:checked {
|
||||
background: #D01616;
|
||||
box-shadow: inset 0 0 0 3px #fff;
|
||||
}
|
||||
|
||||
input[type=checkbox]:disabled,
|
||||
input[type=radio]:disabled {
|
||||
opacity: .5;
|
||||
background: #e2e2e2;
|
||||
}
|
||||
|
||||
input[type=checkbox]#edit-delete:disabled {
|
||||
opacity: .5;
|
||||
background: #e88181;
|
||||
}
|
||||
|
||||
input[type=checkbox]:disabled:hover {
|
||||
border-color: #b5b5b5;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
input[type=checkbox]:disabled:hover,
|
||||
input[type=radio]:disabled:hover {
|
||||
border-color: #b5b5b5;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* in Chrome + Safari + Opera + Mozilla */
|
||||
@supports (-webkit-appearance:none) {
|
||||
input[type=checkbox],
|
||||
input[type=radio],
|
||||
input[type=checkbox]#edit-delete {
|
||||
-webkit-appearance:none;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
top: 3px;
|
||||
margin-right: 0.25em;
|
||||
padding: 0;
|
||||
background: #fff;
|
||||
border: 1px solid #B5B5B5;
|
||||
width: 16px !important;
|
||||
height: 16px !important;
|
||||
-webkit-transition: all 0.5s ease;
|
||||
-o-transition: all 0.5s ease;
|
||||
transition: background 0.5s ease;
|
||||
outline: none;
|
||||
input[type="checkbox"],
|
||||
input[type="radio"],
|
||||
input[type="checkbox"]#edit-delete {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
}
|
||||
|
||||
.adminimal-theme .location .form-item input.form-checkbox {
|
||||
width: 16px;
|
||||
display: inline-block;
|
||||
/* in Mozilla */
|
||||
@supports (-moz-appearance:none) {
|
||||
input[type="checkbox"],
|
||||
input[type="radio"],
|
||||
input[type="checkbox"]#edit-delete {
|
||||
-moz-appearance:none;
|
||||
}
|
||||
|
||||
input[type=checkbox]#edit-delete {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
input[type=radio] {
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
input[type=checkbox]:hover,
|
||||
input[type=checkbox]:focus,
|
||||
input[type=radio]:hover,
|
||||
input[type=radio]:focus {
|
||||
border-color: #0074BD;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=checkbox]#edit-delete:hover,
|
||||
input[type=checkbox]#edit-delete:focus {
|
||||
border-color: #D01616;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
input[type=checkbox]:checked,
|
||||
input[type=checkbox]:disabled:checked,
|
||||
input[type=radio]:checked,
|
||||
input[type=radio]:disabled:checked{
|
||||
background: #0074BD;
|
||||
box-shadow: inset 0px 0px 0px 3px #fff;
|
||||
}
|
||||
|
||||
input[type=checkbox]#edit-delete:checked,
|
||||
input[type=checkbox]#edit-delete:disabled:checked {
|
||||
background: #D01616;
|
||||
box-shadow: inset 0px 0px 0px 3px #fff;
|
||||
}
|
||||
|
||||
input[type=checkbox]:disabled,
|
||||
input[type=radio]:disabled {
|
||||
opacity: .5;
|
||||
background: #E2E2E2;
|
||||
}
|
||||
|
||||
input[type=checkbox]#edit-delete:disabled {
|
||||
opacity: .5;
|
||||
background: #E88181;
|
||||
}
|
||||
|
||||
input[type=checkbox]:disabled:hover {
|
||||
border-color: #B5B5B5;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
input[type=checkbox]:disabled:hover,
|
||||
input[type=radio]:disabled:hover {
|
||||
border-color: #B5B5B5;
|
||||
cursor: default;
|
||||
/*cursor: not-allowed;*/
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.adminimal .dropbutton-single .dropbutton-action a {
|
||||
border-radius: 0 !important;
|
||||
background-image: none;
|
||||
background: #F5F5F2;
|
||||
background: #f5f5f2;
|
||||
}
|
||||
|
||||
.adminimal .ui-dialog .ui-dialog-titlebar {
|
||||
@@ -687,7 +702,7 @@ body.adminimal {
|
||||
|
||||
.adminimal .messages {
|
||||
margin: 1rem 0 1rem 0;
|
||||
border-width: 1px 0px 1px 0;
|
||||
border-width: 1px 0 1px 0;
|
||||
border-radius: 0;
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
@@ -696,26 +711,26 @@ body.adminimal {
|
||||
}
|
||||
|
||||
.adminimal .messages--error {
|
||||
border-color: #E32700;
|
||||
border-color: #e32700;
|
||||
}
|
||||
|
||||
.adminimal .messages--warning {
|
||||
border-color: #E29700;
|
||||
border-color: #e29700;
|
||||
}
|
||||
|
||||
.adminimal .messages--status {
|
||||
border-color: #73B355;
|
||||
border-color: #73b355;
|
||||
}
|
||||
|
||||
.adminimal .cke_top,
|
||||
.adminimal .cke_bottom {
|
||||
background: #F7F7F7;
|
||||
background: #f7f7f7;
|
||||
background-image: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.adminimal .filter-wrapper {
|
||||
background: #F7F7F7;
|
||||
background: #f7f7f7;
|
||||
}
|
||||
|
||||
.adminimal .cke_ltr .cke_button:first-child,
|
||||
@@ -767,7 +782,7 @@ body.adminimal {
|
||||
|
||||
/* Main menu icons end. */
|
||||
.adminimal.path-batch .layout-container {
|
||||
padding-top: 1.3rem;
|
||||
padding-top: 1.3rem;
|
||||
}
|
||||
|
||||
/* Module: Views */
|
||||
@@ -806,3 +821,24 @@ body.adminimal {
|
||||
.adminimal .views-ui-dialog .views-override {
|
||||
background-color: #f6f6f6;
|
||||
}
|
||||
|
||||
.adminimal .field-multiple-table .form-item {
|
||||
margin: 0.75em 0;
|
||||
}
|
||||
|
||||
.node-preview-container .form-type-select {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.node-preview-container label {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.content-header .page-title .field--name-title {
|
||||
display: block;
|
||||
margin-top: 1.2rem;
|
||||
}
|
||||
|
||||
.adminimal .media-library-item__remove.button {
|
||||
border-radius: 20px;
|
||||
}
|
||||
Reference in New Issue
Block a user