This repository was archived by the owner on Jul 24, 2019. It is now read-only.
File tree 1 file changed +42
-0
lines changed
1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ /* this CSS is not part of the widget, it is here just as an example of the demo page styling.... Don't copy this one, roll your own. One
2
+ * of the key things about the widget is that it allows you to do your own styling!
3
+ */
4
+
5
+ # editor {
6
+ max-height : 250px ;
7
+ height : 250px ;
8
+ background-color : white;
9
+ border-collapse : separate;
10
+ border : 1px solid rgb (204 , 204 , 204 );
11
+ padding : 4px ;
12
+ box-sizing : content-box;
13
+ -webkit-box-shadow : rgba (0 , 0 , 0 , 0.0745098 ) 0px 1px 1px 0px inset;
14
+ box-shadow : rgba (0 , 0 , 0 , 0.0745098 ) 0px 1px 1px 0px inset;
15
+ border-top-right-radius : 3px ; border-bottom-right-radius : 3px ;
16
+ border-bottom-left-radius : 3px ; border-top-left-radius : 3px ;
17
+ overflow : scroll;
18
+ outline : none;
19
+ }
20
+ # voiceBtn {
21
+ width : 20px ;
22
+ color : transparent;
23
+ background-color : transparent;
24
+ transform : scale (2.0 , 2.0 );
25
+ -webkit-transform : scale (2.0 , 2.0 );
26
+ -moz-transform : scale (2.0 , 2.0 );
27
+ border : transparent;
28
+ cursor : pointer;
29
+ box-shadow : none;
30
+ -webkit-box-shadow : none;
31
+ }
32
+
33
+ div [data-role = "editor-toolbar" ] {
34
+ -webkit-user-select : none;
35
+ -moz-user-select : none;
36
+ -ms-user-select : none;
37
+ user-select : none;
38
+ }
39
+
40
+ .dropdown-menu a {
41
+ cursor : pointer;
42
+ }
You can’t perform that action at this time.
0 commit comments