Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
CKEditor css changes
3
***/
4
 
5
.cke {
6
  @include border-radius($general-border-radius);
7
 
8
  .cke-top {
9
    @include border-radius($general-border-radius $general-border-radius 0 0);
10
  }
11
 
12
  .cke-bottom {
13
    @include border-radius(0 0 $general-border-radius $general-border-radius);
14
  }
15
}
16
 
17
.cke_bottom,
18
.cke_inner,
19
.cke_top,
20
.cke_reset,
21
.cke_dialog_title,
22
.cke_dialog_footer,
23
.cke_dialog {
24
  background-image: none !important;
25
  filter:none ;
26
  border-top: 0 ;
27
  border-bottom: 0 ;
28
   -webkit-box-shadow: none !important;
29
      -moz-box-shadow: none !important;
30
           box-shadow: none !important;
31
  text-shadow:none ;
32
}
33
 
34
.cke_dialog_ui_button,
35
.cke_dialog_tab {
36
  background-image: none !important;
37
  filter:none ;
38
  -webkit-box-shadow: none !important;
39
  -moz-box-shadow: none !important;
40
  box-shadow: none !important;
41
  text-shadow:none !important;
42
}
43
 
44
.cke_dialog_ui_button:hover,
45
.cke_dialog_tab:hover {
46
  text-decoration: none;
47
  text-shadow:none ;
48
}
49
 
50
.cke_dialog_ui_input_text {
51
  background-image: none !important;
52
  filter:none ;
53
  -webkit-box-shadow: none !important;
54
  -moz-box-shadow: none !important;
55
  box-shadow: none !important;
56
}
57
 
58
.cke_combo_button,
59
.cke_button,
60
.cke_toolbar,
61
.cke_toolgroup {
62
  background-image: none !important;
63
  filter:none !important;
64
  border: 0 ;
65
   -webkit-box-shadow: none !important;
66
  -moz-box-shadow: none !important;
67
  box-shadow: none !important;
68
 
69
}
70
 
71
.cke_button,
72
.cke_combo_button,
73
.cke_panel_grouptitle,
74
.cke_hc.cke_panel_listItem a {
75
  background-image: none !important;
76
  filter:none ;
77
  text-shadow:none ;
78
}
79
 
80
.cke_button:hover,
81
.cke_combo_button:hover {
82
  background-color: #ddd;
83
}
84
 
85
.cke_toolbar_break {
86
  background-image: none !important;
87
  filter:none !important;
88
  border: 0 ;
89
  box-shadow: none !important;
90
  -webkit-box-shadow : none !important;
91
  -moz-box-shadow: none !important;
92
  -ms-box-shadow: none !important;
93
  -o-box-shadow: none !important;
94
}
95
 
96
/***
97
Error state for WYSIWYG Editors
98
***/
99
.has-error .cke {
100
  border: 1px solid $state-danger-border !important;
101
}
102
 
103
.has-success .cke {
104
  border: 1px solid $state-success-border !important;
105
}
106
 
107
.has-warning .cke {
108
  border: 1px solid $state-warning-border !important;
109
}