-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.css
executable file
·116 lines (96 loc) · 2.57 KB
/
admin.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* widget sintesi */
.remove-revision-button .widget-sintesi li a:before {
font-family: "dashicons";
margin-right: 5px;
margin-left: 10px;
}
.widget-sintesi .widget-sintesi-articoli a:before {
content: "\f109" !important;
}
.widget-sintesi .widget-sintesi-pagine a:before {
content: "\f105" !important;
}
.widget-sintesi .widget-sintesi-blog a:before {
content: "\f119" !important;
}
.widget-sintesi .widget-sintesi-termine a:before {
content: "\f330" !important;
}
.widget-sintesi .widget-sintesi-commenti a:before {
content: "\f101" !important;
}
/* Metabox revisioni */
/* Stili per il metabox */
.meta-row {
display: flex;
margin: 10px 0;
}
.meta-th {
width: 30%;
}
.meta-td {
width: 70%;
}
/* Stili per la lista delle revisioni */
/* Stile per il Metabox */
#wikiherbalist_revision_metabox {
background-color: #f9f9f9;
border: 1px solid #ddd;
padding: 20px;
min-width: auto;
}
#wikiherbalist_revision_metabox label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
#wikiherbalist_revision_metabox select,
#wikiherbalist_revision_metabox input[type="date"] {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
border: 1px solid #ddd;
}
#wikiherbalist_revision_metabox #revisions-list {
padding: 10px 0;
border-top: 1px solid #ddd;
margin-top: 10px;
}
#wikiherbalist_revision_metabox #revisions-list h4 {
margin-top: 0;
}
#wikiherbalist_revision_metabox #revisions-list .revision-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px;
border-bottom: 1px solid #ddd;
}
#wikiherbalist_revision_metabox #revisions-list .revision-item:last-child {
border-bottom: none;
}
#wikiherbalist_revision_metabox #revisions-list .revision-item button.remove-revision {
background-color: #dc3232;
color: white;
border: none;
padding: 5px 10px;
border-radius: 5px;
margin-left: 5px;
}
#wikiherbalist_revision_metabox #revisions-list .revision-item button.remove-revision:hover, #wikiherbalist_revision_metabox button#add-revision:hover {
cursor: pointer;
opacity: 0.8;
}
#wikiherbalist_revision_metabox button#add-revision {
background-color: #2271b1;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
}
/* Stile per il messaggio di errore */
#wikiherbalist_revision_metabox .error-message {
color: #dc3232;
font-weight: bold;
}