Plugin Directory

source: simple-csv-tables/trunk/vendor/htmlburger/carbon-fields/packages/metaboxes/fields/complex/style.scss @ 2895145

Last change on this file since 2895145 was 2895145, checked in by joanrodas, 16 months ago

Version 1.0.3

File size: 1.1 KB
Line 
1/* ==========================================================================
2   Complex
3   ========================================================================== */
4
5.cf-complex__inserter-menu {
6        .postbox &,
7        body[class*="taxonomy-"] & {
8                margin: 0;
9                border-radius: $wp-radius-round;
10                background-color: $wp-color-ultra-dark-gray;
11
12                &:before {
13                        position: absolute;
14                        top: 50%;
15                        right: 100%;
16                        width: 0;
17                        height: 0;
18                        border-width: 5px 5px 5px 0;
19                        border-style: solid;
20                        border-color: transparent $wp-color-ultra-dark-gray;
21                        margin-top: -5px;
22                        content: '';
23                }
24        }
25}
26
27.cf-complex__inserter-item {
28        .postbox &,
29        body[class*="taxonomy-"] & {
30                font-weight: 600;
31                color: $color-white;
32                transition: color $transition-base;
33
34                &:hover {
35                        color: $wp-color-medium-blue;
36                }
37        }
38}
39
40.cf-complex__inserter-button {
41        .postbox .cf-complex__tabs &,
42        body[class*="taxonomy-"] .cf-complex__tabs & {
43                font-weight: 600;
44                color: $wp-color-dark-gray;
45        }
46}
47
48.cf-complex__tabs-item {
49        .postbox &,
50        body[class*="taxonomy"] & {
51                font-weight: 600;
52                color: $wp-color-dark-gray;
53        }
54}
Note: See TracBrowser for help on using the repository browser.