-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
124 lines (108 loc) · 2.11 KB
/
app.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
117
118
119
120
121
122
123
124
div.clear{
clear: both;
}
.loading {
}
a{
text-decoration: underline;
color: #555;
}
.badge a{
color: #FFF;
}
.loading_spinner {
display: none;
}
.help {
display: none;
}
.order_table, .product_table {
table-layout: fixed;
position: relative;
width: 100%;
}
.product_table {
table-layout: auto;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th,
.order_table tr.selected {
background-color: #dff0d8;
}
.order_table.table tr:hover th, .product_table.table tr:hover th{
background-color: #e6e6e6;
}
.totals{
margin-top: 20px;
}
.total_dollars {
float: right;
font-size: 3.3em;
height: 40px;
margin-right: 50px;
position: relative;
text-decoration: underline;
top: 22px;
width: 50%;
}
.total_number {
float: left;
border: 8px solid #90b027;
border-radius: 50%;
text-align: center;
height: 80px;
width: 80px;
}
.total_number span {
top: 14px;
/* left: 14px; */
display: block;
position: relative;
font-size: 2.3em;
font-weight: bolder;
}
.total_number span.smaller{
font-size: 0.9em;
font-weight: normal;
}
/* Sort table */
th.sort-header {
cursor:pointer;
background-color: #e6e6e6;
}
th.sort-header::-moz-selection,
th.sort-header::selection {
background:transparent;
}
table th.sort-header:after {
content:'';
float:right;
margin-top:7px;
border-width:0 4px 4px;
border-style:solid;
border-color:#404040 transparent;
visibility:hidden;
}
table th.sort-header:hover:after {
visibility:visible;
}
table th.sort-up:after,
table th.sort-down:after,
table th.sort-down:hover:after {
visibility:visible;
opacity:0.4;
}
table th.sort-up:after {
border-bottom:none;
border-width:4px 4px 0;
}