_bootstrap-markdown.scss
1.0 KB
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
/***
Bootstrap Markdown
***/
.md-input {
padding: 5px !important;
border-bottom: 0 !important;
@include border-radius(0 0 $general-border-radius $general-border-radius);
}
.md-editor {
@include border-radius($general-border-radius);
.btn-toolbar {
margin-left: 0px;
@include border-radius($general-border-radius $general-border-radius 0 0);
.btn-group {
.btn-sm.btn {
padding-bottom: 3px;
}
.btn-primary {
padding-top: 5px;
padding-bottom: 7px;
}
}
}
}
.md-editor.active {
border: 1px solid #999999;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
/***
Error state for WYSIWYG Editors
***/
.has-error .md-editor {
border: 1px solid $state-danger-border !important;
}
.has-success .md-editor {
border: 1px solid $state-success-border !important;
}
.has-warning .md-editor {
border: 1px solid $state-warning-border !important;
}