-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathapp.css
More file actions
executable file
·35 lines (33 loc) · 933 Bytes
/
Copy pathapp.css
File metadata and controls
executable file
·35 lines (33 loc) · 933 Bytes
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
.accounts_app h3 {
line-height: 30px;
}
.accounts_app .logo {
background: transparent app-asset-url("logo-small.png") no-repeat;
background-size: 25px 25px;
float: right;
height: 25px;
width: 25px;
}
textarea:required:invalid, textarea:focus:invalid, input:required:invalid, input:focus:invalid {
/* insert your own styles for invalid form input */
box-shadow: inset 0 0 2px 0 red;
}
textarea:required:valid, input:required:valid, input:focus:valid {
/* insert your own styles for valid form input */
box-shadow: inset 0 0 2px 0 green;
}
ul, li {
list-style-type: none;
}
p.parent {
box-shadow: inset 0 0 5px 0 green;
}
.ui-autocomplete {
max-height: 100px;
overflow-y: auto;
/* prevent horizontal scrollbar */
overflow-x: hidden;
}
.displayList, .displayForm, .displayMultiCreate, .displayUpdate, .removeTicket {
display: none;
}