forked from rstudio/shinydashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshinydashboard.css
71 lines (63 loc) · 1.59 KB
/
shinydashboard.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
/* A replacement for .small-box .icon, where the icon is smaller and doesn't
change size when moused over. */
.small-box .icon-large {
position: absolute;
top: auto;
bottom: 5px;
right: 5px;
font-size: 70px;
color: rgba(0, 0, 0, 0.15);
}
/* So that selectize dropdowns are visible if they go off the bottom. */
.content {
overflow: visible;
}
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > .fa,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > .ion {
float: left;
font-size: 30px;
width: 50px;
text-align: center;
margin-right: 5px;
color: #000;
}
/* Inputs in the sidebar */
section.sidebar .shiny-input-container {
/* Proper spacing around inputs. */
padding: 12px 15px 0px 12px;
/* Wrap content (important for inline inputs). */
white-space: normal;
}
/* Shiny inputs in boxes should span full width. */
div.box-body .shiny-input-container {
width: auto;
}
/* Sidebar is dark, so make text light by default. */
.sidebar {
color: #fff;
}
/* Slider min and max in sidebar. */
.sidebar .irs-min, .sidebar .irs-max {
color: #aaa;
}
/* Don't highlight text when info box is in <a> tag */
a > .info-box {
color: #333;
}
/* Disable bouncy transition for sidebar toggle. */
.content-wrapper,
.right-side,
.main-footer {
-moz-transition: none;
-webkit-transition: none;
-o-transition: all 0 none;
transition: none;
}
.main-sidebar,
.left-side {
-moz-transition: none;
-webkit-transition: none;
-o-transition: all 0 none;
transition: none;
}