@schenkerjon/ng-govbr-tw 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -108,3 +108,73 @@ html.govbr-contrast .shadow-md,
|
|
|
108
108
|
html.govbr-contrast .shadow-lg {
|
|
109
109
|
box-shadow: 0 0 0 1px #444 !important;
|
|
110
110
|
}
|
|
111
|
+
|
|
112
|
+
/* ═══ Sidebar (br-sidebar) ═══ */
|
|
113
|
+
html.govbr-contrast br-sidebar aside {
|
|
114
|
+
background-color: #111 !important;
|
|
115
|
+
border-color: #444 !important;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
html.govbr-contrast br-sidebar-item a,
|
|
119
|
+
html.govbr-contrast br-sidebar-item button {
|
|
120
|
+
color: #fff !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
html.govbr-contrast br-sidebar-item a:hover,
|
|
124
|
+
html.govbr-contrast br-sidebar-item button:hover {
|
|
125
|
+
background-color: #333 !important;
|
|
126
|
+
color: #ffff00 !important;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
html.govbr-contrast br-sidebar-item .br-sidebar-item-active,
|
|
130
|
+
html.govbr-contrast .br-sidebar-item-active {
|
|
131
|
+
background-color: #fff !important;
|
|
132
|
+
color: #000 !important;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
html.govbr-contrast .br-sidebar-item-active i {
|
|
136
|
+
color: #000 !important;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
html.govbr-contrast br-sidebar-group-label h4 {
|
|
140
|
+
color: #aaa !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
html.govbr-contrast br-sidebar-sub button {
|
|
144
|
+
color: #fff !important;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
html.govbr-contrast br-sidebar-sub button:hover {
|
|
148
|
+
background-color: #333 !important;
|
|
149
|
+
color: #ffff00 !important;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/* ═══ Tabela (br-table) ═══ */
|
|
153
|
+
html.govbr-contrast br-table table {
|
|
154
|
+
border-color: #444 !important;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
html.govbr-contrast br-table table thead th {
|
|
158
|
+
background-color: #fff !important;
|
|
159
|
+
color: #000 !important;
|
|
160
|
+
border-color: #666 !important;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
html.govbr-contrast br-table table tbody td {
|
|
164
|
+
background-color: #000 !important;
|
|
165
|
+
color: #fff !important;
|
|
166
|
+
border-color: #444 !important;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
html.govbr-contrast br-table table tbody tr:nth-child(even) td {
|
|
170
|
+
background-color: #111 !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
html.govbr-contrast br-table table tbody tr:hover td {
|
|
174
|
+
background-color: #222 !important;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
html.govbr-contrast br-table table tbody tr.br-table-row-selected td {
|
|
178
|
+
background-color: #333 !important;
|
|
179
|
+
outline: 2px solid #ffff00;
|
|
180
|
+
}
|