Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
ul.wysihtml5-toolbar {
2
        margin: 0;
3
        padding: 0;
4
        display: block;
5
}
6
 
7
ul.wysihtml5-toolbar:after {
8
        clear: both;
9
        display: table;
10
        content: "";
11
}
12
 
13
ul.wysihtml5-toolbar > li {
14
        float: left;
15
        display: list-item;
16
        list-style: none;
17
        margin: 0 5px 10px 0;
18
}
19
 
20
ul.wysihtml5-toolbar a[data-wysihtml5-command=bold] {
21
        font-weight: bold;
22
}
23
 
24
ul.wysihtml5-toolbar a[data-wysihtml5-command=italic] {
25
        font-style: italic;
26
}
27
 
28
ul.wysihtml5-toolbar a[data-wysihtml5-command=underline] {
29
        text-decoration: underline;
30
}
31
 
32
ul.wysihtml5-toolbar a.btn.wysihtml5-command-active {
33
        background-image: none;
34
        -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);
35
        -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);
36
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);
37
        background-color: #E6E6E6;
38
        background-color: #D9D9D9;
39
        outline: 0;
40
}
41
 
42
ul.wysihtml5-commands-disabled .dropdown-menu {
43
        display: none !important;
44
}
45
 
46
ul.wysihtml5-toolbar div.wysihtml5-colors {
47
  display:block;
48
  width: 50px;
49
  height: 20px;
50
  margin-top: 2px;
51
  margin-left: 5px;
52
  position: absolute;
53
  pointer-events: none;
54
}
55
 
56
ul.wysihtml5-toolbar a.wysihtml5-colors-title {
57
  padding-left: 70px;
58
}
59
 
60
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="black"] {
61
  background: black !important;
62
}
63
 
64
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="silver"] {
65
  background: silver !important;
66
}
67
 
68
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="gray"] {
69
  background: gray !important;
70
}
71
 
72
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="maroon"] {
73
  background: maroon !important;
74
}
75
 
76
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="red"] {
77
  background: red !important;
78
}
79
 
80
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="purple"] {
81
  background: purple !important;
82
}
83
 
84
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="green"] {
85
  background: green !important;
86
}
87
 
88
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="olive"] {
89
  background: olive !important;
90
}
91
 
92
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="navy"] {
93
  background: navy !important;
94
}
95
 
96
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="blue"] {
97
  background: blue !important;
98
}
99
 
100
ul.wysihtml5-toolbar div[data-wysihtml5-command-value="orange"] {
101
  background: orange !important;
102
}