Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Error state for WYSIWYG Editors
3
***/
4
.note-editor {
5
	border: 1px solid $input-border;
6
 
7
	@include border-radius($general-border-radius);
8
 
9
	.note-toolbar {
10
		border-bottom: 1px solid $input-border;
11
 
12
		@include border-radius($general-border-radius $general-border-radius 0 0);
13
	}
14
 
15
	.note-statusbar {
16
		@include border-radius(0 0 $general-border-radius $general-border-radius);
17
 
18
		.note-resizebar {
19
			border-top: 1px solid $input-border;
20
		}
21
	}
22
 
23
	&.fullscreen {
24
		z-index: 11000;
25
		width: 100% !important;
26
	}
27
 
28
	.dropdown-menu {
29
		&:before {
30
	        left: 9px;
31
	        right: auto;
32
	    }
33
 
34
	    &:after {
35
	        left: 10px;
36
	        right: auto;
37
	    }
38
	}
39
}
40
 
41
.note-link-dialog {
42
	.checkbox {
43
		margin-left: 20px;
44
	}
45
}
46
 
47
.has-error .note-editor {
48
  border: 1px solid $state-danger-border !important;
49
}
50
 
51
.has-success .note-editor {
52
  border: 1px solid $state-success-border !important;
53
}
54
 
55
.has-warning .note-editor {
56
  border: 1px solid $state-warning-border !important;
57
}