Skip to content

Commit 48b08ba

Browse files
author
dorgan@donaldorgan.com
committed
Adding in missing files for bootstrap-wysihtml5
1 parent 5094e96 commit 48b08ba

File tree

7 files changed

+10212
-0
lines changed

7 files changed

+10212
-0
lines changed

application/androBuild.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,10 @@ function checkDBFilesForChanges() {
269269
} else {
270270
$this->LogEntry( 'Spec files have not changed: Proceeding with mini build' );
271271
}
272+
273+
if (isset($_GET['gp_forceBuild'])) {
274+
$changed = true;
275+
}
272276
return $changed;
273277
}
274278

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
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+
}

0 commit comments

Comments
 (0)