This repository has been archived by the owner on Apr 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.css
90 lines (76 loc) · 1.56 KB
/
app.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
html {
overflow-y: auto;
}
.bg-primary > .media-heading > small,
.form-group > .control-label > small {
color: #CCCCCC;
}
.btn > .button-text {
display: none;
}
#replyForm,
.compose-form,
#menu {
margin-top: 10px;
margin-bottom: 10px;
}
#threads,
#menu {
padding-left: 15px;
padding-right: 15px;
}
@media (min-width: 768px) {
#threads {
position: fixed;
top: 10px;
bottom: 10px;
width: 25%;
overflow-y: auto;
overflow-x: hidden;
}
#threads > li {
margin-right: 10px;
}
.btn > .button-text {
display: inline;
}
#menu {
margin-bottom: 0;
}
}
/* Menu bar */
#menu .btn {
margin-left: 5px;
}
/* Options modal */
#optionsModal {
overflow-y: auto;
}
#optionsModal .nav-tabs {
margin-bottom: 15px;
}
#optionsModal .nav-tabs > li.active.has-error > a,
#optionsModal .nav-tabs > li.active.has-error > a:hover,
#optionsModal .nav-tabs > li.active.has-error > a:focus {
color: #A94442;
border-color: #A94442;
border-bottom-color: transparent;
}
#optionsModal .nav-tabs > li.has-error > a,
#optionsModal .nav-tabs > li.has-error > a:hover,
#optionsModal .nav-tabs > li.has-error > a:focus {
color: #A94442;
}
#optionsModal .tab-content .form-horizontal .form-group {
margin-left: auto;
margin-right: auto;
}
#optionsModal .tab-content .form-horizontal .form-group .input-group {
padding-left: 15px;
padding-right: 15px;
}
/* Compose form */
.compose-form #captchaImg {
border: 1px solid #737373;
padding: 3px;
}