Newer
Older
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
@import 'bootstrap-variables';
@import '~bootstrap/scss/functions';
@import '~bootstrap/scss/variables';
/* ==============================================================
Bootstrap tweaks
===============================================================*/
body,
h1,
h2,
h3,
h4 {
font-weight: 300;
}
/* Increase contrast of links to get 100% on Lighthouse Accessability Audit. Override this color if you want to change the link color, or use a Bootswatch theme */
a {
color: #533f03;
font-weight: bold;
}
a:hover {
color: #533f03;
}
/* override hover color for dropdown-item forced by bootstrap to all a:not([href]):not([tabindex]) elements in _reboot.scss */
a:not([href]):not([tabindex]):hover.dropdown-item {
color: $dropdown-link-hover-color;
}
/* override .dropdown-item.active background-color on hover */
.dropdown-item.active:hover {
background-color: mix($dropdown-link-hover-bg, $dropdown-link-active-bg, 50%);
}
a:hover {
/* make sure browsers use the pointer cursor for anchors, even with no href */
cursor: pointer;
}
.dropdown-item:hover {
color: $dropdown-link-hover-color;
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Generic styles
========================================================================== */
/* Error highlight on input fields */
.ng-valid[required],
.ng-valid.required {
border-left: 5px solid green;
}
.ng-invalid:not(form) {
border-left: 5px solid red;
}
/* other generic styles */
.jh-card {
padding: 1.5%;
margin-top: 20px;
border: none;
}
.error {
color: white;
background-color: red;
}
.pad {
padding: 10px;
}
.w-40 {
width: 40% !important;
}
.w-60 {
width: 60% !important;
}
.break {
white-space: normal;
word-break: break-all;
}
.readonly {
background-color: #eee;
opacity: 1;
}
.footer {
border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.hand,
[jhisortby] {
cursor: pointer;
}
/* ==========================================================================
Custom alerts for notification
========================================================================== */
.alerts {
.alert {
text-overflow: ellipsis;
pre {
background: none;
border: none;
font: inherit;
color: inherit;
padding: 0;
margin: 0;
}
.popover pre {
font-size: 10px;
}
}
.jhi-toast {
position: fixed;
width: 100%;
&.left {
left: 5px;
}
&.right {
right: 5px;
}
&.top {
top: 55px;
}
&.bottom {
bottom: 55px;
}
}
}
@media screen and (min-width: 480px) {
.alerts .jhi-toast {
width: 50%;
}
}
/* ==========================================================================
entity detail page css
========================================================================== */
.row.jh-entity-details > {
dd {
margin-bottom: 15px;
}
}
@media screen and (min-width: 768px) {
.row.jh-entity-details > {
dt {
margin-bottom: 15px;
}
dd {
border-bottom: 1px solid #eee;
padding-left: 180px;
margin-left: 0;
}
}
}
/* ==========================================================================
ui bootstrap tweaks
========================================================================== */
.nav,
.pagination,
.carousel,
.panel-title a {
cursor: pointer;
}
.thread-dump-modal-lock {
max-width: 450px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* jhipster-needle-scss-add-main JHipster will add new css style */