blob: 45752a6fef8d84639dab2e5efc3fef0257f79b0a [file] [log] [blame]
Tyler Scott3c17d5f2015-06-23 17:49:29 -06001html, body {
2 width: 100%;
3 height: 100%;
4 margin: 0;
Tyler Scott696d38f2015-08-04 22:41:22 -06005 min-width: 650px;
Tyler Scott3c17d5f2015-06-23 17:49:29 -06006}
7
Tyler Scott3c17d5f2015-06-23 17:49:29 -06008.sidebar {
9 height: 100%;
10 max-height: 100%;
11 overflow: auto;
12}
Tyler Scottf08ab962015-06-30 16:31:29 -060013
Tyler Scotta1ac69d2015-07-02 17:42:03 -060014.fail {
Tyler Scottf65b7102015-06-30 18:40:14 -060015 color: red;
16}
17
Tyler Scotta1ac69d2015-07-02 17:42:03 -060018.sucess {
Tyler Scottf65b7102015-06-30 18:40:14 -060019 color: green;
Tyler Scottf08ab962015-06-30 16:31:29 -060020}
Tyler Scott7d076e22015-07-06 19:21:50 -060021
22.subnav {
23 display: none;
24 max-height: 500px;
25 overflow: auto;
26 margin-left: 15px;
27 border-left: gray 3px solid;
28}
Tyler Scotte815d3e2015-07-09 16:56:17 -060029
Tyler Scott93cae872015-07-21 14:58:23 -060030.autoComplete .list-group {
31 margin-bottom: 0;
32 border: none;
33}
34
Tyler Scottc55879f2015-07-28 14:56:37 -060035.pager {
36 /* margin: 0; */
37}
38
39#searchBar {
40 display: inline-block;
41}
42
Tyler Scotte815d3e2015-07-09 16:56:17 -060043#filters {
44 margin-bottom: 10px;
45 visibility: visible;
46 opacity: 1;
47 transition: visibility 1s ease-out, opacity 1s ease-out, margin-bottom 1s ease-out;
48}
49
50#filters .label {
51 /* display: none; */
52 font-size: inherit;
53 transition: background-color 1s,
54
55 border-color 2s;
Tyler Scott087aef72015-07-14 14:11:59 -060056 cursor: pointer;
Tyler Scotte815d3e2015-07-09 16:56:17 -060057}
58
Tyler Scotta1530052015-07-24 00:13:28 -060059#filters .label::after {
60 content: " \2716";
61}
62
Tyler Scotte815d3e2015-07-09 16:56:17 -060063#filters .label:hover {
64 /* font-size: 0; */
65 background-color: red;
66 border-color: red;
67}
68
69#filters .label:hover::before {
70 content: "Remove ";
71}
72
73#filters .label:hover::after {
74 content: "?";
75}
76
77#filters .label:not(:last-child) {
78 margin-right: 5px;
79}
80
81#filters:empty {
82 visibility: hidden;
83 opacity: 0;
84 margin-bottom: 0;
85}
86
87/* Magic filters text that won't get picked up in jquery.text */
88#filters:not(:empty)::before {
89 content: "Filters: ";
90}
Tyler Scottfe8e4932015-07-28 17:45:45 -060091
92#search {
Tyler Scott696d38f2015-08-04 22:41:22 -060093 min-width: 500px;
Tyler Scottfe8e4932015-07-28 17:45:45 -060094}
95
96.autoComplete {
97 max-height: 0;
98 overflow-y: auto;
99 position: absolute;
100 left: 0;
101 transition: max-height 1s;
102}
103
104*:focus ~ .autoComplete { /* If the parent detects focus on any subelement or itself */
105 max-height: 500px;
106}
Tyler Scott4e4865a2015-08-06 14:23:21 -0600107
108.pager li > div {
109 display: inline-block;
110}