_bootstrap-summercode.scss
991 字节
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
/***
Error state for WYSIWYG Editors
***/
.note-editor {
border: 1px solid $input-border;
@include border-radius($general-border-radius);
.note-toolbar {
border-bottom: 1px solid $input-border;
@include border-radius($general-border-radius $general-border-radius 0 0);
}
.note-statusbar {
@include border-radius(0 0 $general-border-radius $general-border-radius);
.note-resizebar {
border-top: 1px solid $input-border;
}
}
&.fullscreen {
z-index: 11000;
width: 100% !important;
}
.dropdown-menu {
&:before {
left: 9px;
right: auto;
}
&:after {
left: 10px;
right: auto;
}
}
}
.note-link-dialog {
.checkbox {
margin-left: 20px;
}
}
.has-error .note-editor {
border: 1px solid $state-danger-border !important;
}
.has-success .note-editor {
border: 1px solid $state-success-border !important;
}
.has-warning .note-editor {
border: 1px solid $state-warning-border !important;
}