forked from underscorgan/community_management
-
Notifications
You must be signed in to change notification settings - Fork 10
/
reviews.css
122 lines (102 loc) · 1.84 KB
/
reviews.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
.btn:hover {background: #eee;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#reviews {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 18px;
border-collapse: collapse;
width: 100%;
border-spacing: 0;
border: 1px solid #ddd;
}
}
.word_break {
word-break: break-all;
width: auto;
}
#reviews td, #reviews th {
border: 1px solid #ddd;
padding: 8px;
}
#reviews tr:nth-child(even){background-color: #f2f2f2;
}
#reviews tr:hover {background-color: #ddd;
}
#reviews th {
padding-top: 9px;
padding-bottom: 9px;
text-align: left;
background-color: #cfcfcf;
color: black;
}
td .long {
display: none;
}
td.more .long {
display: inherit;
}
td.more .short {
display: none;
}
.url, .toggle-more {
float: left;
}
.url {
padding-left: 4px;
}
.toggle-more {
display: none;
padding-left: 4px;
color: blue;
text-decoration: underline;
cursor: pointer;
}
.multi-url .toggle-more {
display: inherit;
}
iv.text-container {
margin: 0 auto;
width: 75%;
}
.hideContent {
overflow: hidden;
line-height: 1em;
height: 2em;
}
.showContent {
line-height: 1em;
height: auto;
}
.showContent{
height: auto;
}
.show-more {
padding: 10px 0;
text-align: center;
}
.button {
border: none;
background-color: #D8D8D8;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;}
@media screen and (min-width: 20em) {
.my-custom-class th.ui-table-priority-1,
.my-custom-class td.ui-table-priority-1 {
display: table-cell;
}
}
/* Show priority 2 at 480px (30em x 16px) */
@media screen and (min-width: 30em) {
.my-custom-class th.ui-table-priority-2,
.my-custom-class td.ui-table-priority-2 {
display: table-cell;
}
}