blob: aa2d1b6001e986ff90e452326e263b9ac64e61fa [file] [log] [blame]
Tyler Scott3c17d5f2015-06-23 17:49:29 -06001html, body {
2 width: 100%;
3 height: 100%;
4 margin: 0;
5}
6
Tyler Scott3c17d5f2015-06-23 17:49:29 -06007.sidebar {
8 height: 100%;
9 max-height: 100%;
10 overflow: auto;
11}
Tyler Scottf08ab962015-06-30 16:31:29 -060012
Tyler Scotta1ac69d2015-07-02 17:42:03 -060013.fail {
Tyler Scottf65b7102015-06-30 18:40:14 -060014 color: red;
15}
16
Tyler Scotta1ac69d2015-07-02 17:42:03 -060017.sucess {
Tyler Scottf65b7102015-06-30 18:40:14 -060018 color: green;
Tyler Scottf08ab962015-06-30 16:31:29 -060019}
Tyler Scott7d076e22015-07-06 19:21:50 -060020
21.subnav {
22 display: none;
23 max-height: 500px;
24 overflow: auto;
25 margin-left: 15px;
26 border-left: gray 3px solid;
27}
Tyler Scotte815d3e2015-07-09 16:56:17 -060028
Tyler Scott93cae872015-07-21 14:58:23 -060029.autoComplete .list-group {
30 margin-bottom: 0;
31 border: none;
32}
33
Tyler Scottc55879f2015-07-28 14:56:37 -060034.pager {
35 /* margin: 0; */
36}
37
38#searchBar {
39 display: inline-block;
40}
41
Tyler Scotte815d3e2015-07-09 16:56:17 -060042#filters {
43 margin-bottom: 10px;
44 visibility: visible;
45 opacity: 1;
46 transition: visibility 1s ease-out, opacity 1s ease-out, margin-bottom 1s ease-out;
47}
48
49#filters .label {
50 /* display: none; */
51 font-size: inherit;
52 transition: background-color 1s,
53
54 border-color 2s;
Tyler Scott087aef72015-07-14 14:11:59 -060055 cursor: pointer;
Tyler Scotte815d3e2015-07-09 16:56:17 -060056}
57
Tyler Scotta1530052015-07-24 00:13:28 -060058#filters .label::after {
59 content: " \2716";
60}
61
Tyler Scotte815d3e2015-07-09 16:56:17 -060062#filters .label:hover {
63 /* font-size: 0; */
64 background-color: red;
65 border-color: red;
66}
67
68#filters .label:hover::before {
69 content: "Remove ";
70}
71
72#filters .label:hover::after {
73 content: "?";
74}
75
76#filters .label:not(:last-child) {
77 margin-right: 5px;
78}
79
80#filters:empty {
81 visibility: hidden;
82 opacity: 0;
83 margin-bottom: 0;
84}
85
86/* Magic filters text that won't get picked up in jquery.text */
87#filters:not(:empty)::before {
88 content: "Filters: ";
89}
Tyler Scottfe8e4932015-07-28 17:45:45 -060090
91#search {
92 width: 500px;
93}
94
95.autoComplete {
96 max-height: 0;
97 overflow-y: auto;
98 position: absolute;
99 left: 0;
100 transition: max-height 1s;
101}
102
103*:focus ~ .autoComplete { /* If the parent detects focus on any subelement or itself */
104 max-height: 500px;
105}