views_ui.admin.css
Same filename in this branch
Same filename and directory in other branches
- 8.9.x core/themes/stable/css/views_ui/views_ui.admin.css
- 8.9.x core/modules/views_ui/css/views_ui.admin.css
- 10 core/themes/stable9/css/views_ui/views_ui.admin.css
- 10 core/themes/claro/css/components/views_ui.admin.css
- 10 core/modules/views_ui/css/views_ui.admin.css
- 11.x core/themes/stable9/css/views_ui/views_ui.admin.css
- 11.x core/themes/claro/css/components/views_ui.admin.css
- 11.x core/modules/views_ui/css/views_ui.admin.css
The .admin.css file is intended to only contain positioning and size declarations. For example: display, position, float, clear, and overflow.
File
-
core/
themes/ claro/ css/ components/ views_ui.admin.css
View source
- /*
- * DO NOT EDIT THIS FILE.
- * See the following change record for more information,
- * https://www.drupal.org/node/3084859
- * @preserve
- */
-
- /**
- * @file
- * The .admin.css file is intended to only contain positioning and size
- * declarations. For example: display, position, float, clear, and overflow.
- */
-
- .views-admin pre {
- margin-top: 0;
- margin-bottom: 0;
- white-space: pre-wrap;
- }
-
- .views-display-deleted > details > summary,
- .views-display-deleted .details-wrapper > .views-ui-display-tab-bucket > *,
- .views-display-deleted .views-display-columns {
- opacity: 0.25;
- }
-
- .views-display-disabled > details > summary,
- .views-display-disabled .details-wrapper > .views-ui-display-tab-bucket > *,
- .views-display-disabled .views-display-columns {
- opacity: 0.5;
- }
-
- .views-display-tab .details-wrapper > .views-ui-display-tab-bucket .actions {
- opacity: 1;
- }
-
- .views-display-column {
- box-sizing: border-box;
- }
-
- .views-display-columns > * {
- float: none;
- width: auto;
- margin: 0 0 var(--space-l) 0;
- }
-
- @media screen and (min-width: 60rem) { /* 960px */
- .views-display-columns > * {
- float: left; /* LTR */
- width: 32%;
- margin-bottom: 0;
- margin-left: 2%; /* LTR */
- }
- [dir="rtl"] .views-display-columns > * {
- float: right;
- margin-right: 2%;
- margin-left: 0;
- }
- .views-display-columns > *:first-child {
- margin-left: 0; /* LTR */
- }
- [dir="rtl"] .views-display-columns > *:first-child {
- margin-right: 0;
- }
- }
-
- .views-ui-dialog .scroll {
- overflow: auto;
- padding: 1em;
- }
-
- /* Don't let the messages overwhelm the modal */
-
- .views-ui-dialog .views-messages {
- overflow: auto;
- max-height: 12.5rem;
- }
-
- .form-item--options-value-all {
- display: none;
- }
-
- .js-only {
- display: none;
- }
-
- html.js .js-only {
- display: inherit;
- }
-
- html.js span.js-only {
- display: inline;
- }
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.