summaryrefslogtreecommitdiff
path: root/client/table/tabulator.css
blob: a1504dd6879f3d201b0f1de440e007da4b3b9efb (plain)
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
.tabulator {
  /*border-left: 1px solid #333;
  border-bottom: 1px solid #333;*/
  font-size: 12px;
}
.tabulator-row.tabulator-row-odd {
  background-color: #ddd;
}
.tabulator-row.tabulator-row-even {
  background-color: #ebebeb;
}
.desktop .tabulator-row.tabulator-selectable.tabulator-row-odd:hover {
  cursor: pointer ;
  background-color: #ebebeb;
}
.desktop .tabulator-row.tabulator-selectable.tabulator-row-even:hover {
  cursor: pointer;
  background-color: #ddd;
}
.desktop .content .tabulator-row .tabulator-cell a{
  border-bottom: none;
  text-decoration: underline;
}
/*.tabulator-row .tabulator-cell {
  border-right: 1px solid #444;
  padding: 8px;
}
.tabulator .tabulator-header {
  border-bottom: 0;
}
.tabulator .tabulator-header .tabulator-col {
  border-right: 1px solid #444;
}
.tabulator .tabulator-tableHolder .tabulator-table {
  background-color: #333;
}
.multi-value-formatter-content span {
  border: 0;
  padding: 0 5px 0 0;
}*/

.citationBrowser {
}
.citationBrowser .q {
  max-width: 400px;
  margin-bottom: 10px;
  background-image: url(/assets/img/icon-search.png);
  background-position: 378px center;
  background-repeat: no-repeat;
  box-shadow: 1px 2px 4px rgba(0,0,0,0.6);
  border: 0;
}

.citationHeader {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.download {
  display: block;
  font-size: 11px;
  color: #333;
  cursor: pointer;
  background: #ddd;
  padding: 10px 14px;
  border-radius: 5px;
  transition: all 0.2s;
  font-weight: 500;
  text-transform: uppercase;
  border: 0 !important;
}
.content a.download {
  padding: 5px 8px 5px 8px;
}
.desktop .download:hover {
  color: #fff;
  background: #666;
}