PluginProbe
Remove Broken Images / trunk
Remove Broken Images vtrunk
trunk 1.1.0 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2-beta-1 1.5.0 1.5.1
remove-broken-images / assets / admin-style.css

admin-style.css in Remove Broken Images trunk, at assets/admin-style.css

121 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 :root {
2 --r34rbi-accent-color-1: #f9423a;
3 --r34rbi-accent-color-2: #307fe2;
4 --r34rbi-neutral-color-1: #444444;
5 --r34rbi-neutral-color-2: #767676;
6 --r34rbi-neutral-color-3: #ccd0d4;
7 --r34rbi-neutral-color-4: #e7e7e7;
8 --r34rbi-neutral-color-5: #f7f7f7;
9 }
10
11 .r34rbi .columns-2 {
12 display: grid;
13 grid-template-columns: calc(100% - 280px) 280px;
14 width: 100%;
15 }
16
17 .r34rbi .columns-2 .column-1 {
18 grid-column-start: 1;
19 padding-right: 1rem;
20 }
21
22 .r34rbi .columns-2 .column-1 > * {
23 width: 100%;
24 }
25
26 .r34rbi .columns-2 .column-2 {
27 grid-column-start: 2;
28 }
29
30 .r34rbi .help {
31 cursor: help;
32 display: block;
33 font-size: 0.75rem;
34 height: 1.5em;
35 position: absolute; top: 1rem; right: 0;
36 width: 1.5em;
37 }
38 .r34rbi .help:before {
39 background: var(--r34rbi-neutral-color-2);
40 border-radius: 2em;
41 color: #ffffff;
42 content: '?';
43 display: inline-block;
44 font-style: normal;
45 font-weight: bold;
46 height: 1.5em;
47 line-height: 1.5em;
48 position: absolute; top: 0; left: 0;
49 text-align: center;
50 width: 1.5em;
51 }
52 .r34rbi .help:hover:before {
53 background: var(--r34rbi-accent-color-2);
54 z-index: 3;
55 }
56
57 .r34rbi .help .help_content {
58 background: white;
59 border: 1px solid var(--r34rbi-neutral-color-3);
60 box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
61 color: var(--r34rbi-neutral-color-1);
62 display: none;
63 font-style: normal;
64 line-height: 1.5em;
65 padding: 0.75em;
66 position: absolute; top: 0.75em; right: -0.25em;
67 text-align: left;
68 width: 24em;
69 z-index: 2;
70 }
71 .r34rbi .help:hover .help_content { display: block; }
72
73 .r34rbi .help:hover .help_content code {
74 font-size: 90% !important;
75 padding: 1px 2px !important;
76 }
77
78 .r34rbi small code {
79 font-size: 100%;
80 }
81
82 .r34rbi table {
83 border-collapse: collapse;
84 margin: 1.5rem 0 !important;
85 }
86
87 .r34rbi tr {
88 border-top: 1px solid var(--r34rbi-neutral-color-4);
89 border-bottom: 1px solid var(--r34rbi-neutral-color-4);
90 }
91
92 .r34rbi tr.r34rbi-table-header-row {
93 background: var(--r34rbi-neutral-color-5);
94 }
95
96 .r34rbi table th, .r34rbi table td {
97 padding-left: 0;
98 position: relative;
99 }
100
101
102 @media screen and (max-width: 782px) {
103
104 .r34rbi .columns-2 {
105 display: block;
106 }
107
108 .r34rbi .columns-2 .column-1 {
109 display: block;
110 width: 100%;
111 }
112
113
114 .r34rbi .columns-2 .column-2 {
115 display: block;
116 width: 100%;
117 }
118
119 }
120
121