Skip to content
This repository was archived by the owner on Oct 2, 2018. It is now read-only.

Commit 2a43e16

Browse files
author
Joshua Smith
committed
Lighten up
1 parent 68cedc7 commit 2a43e16

9 files changed

Lines changed: 58 additions & 22 deletions

File tree

index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,8 @@ <h1><span id="currentFileLocation" style="display:none;"></span><span id="curren
267267
<li><button class="sticky icon-strikethrough" firetext-icon id="strikethrough" data-click="formatDoc" data-click-action="strikeThrough"></button></li>
268268
<li><button class="icon-more" data-click="nav" data-click-location="format"></button></li>
269269
</ul>
270+
<ul>
271+
</ul>
270272
</div>
271273
</div>
272274
</li>
@@ -529,9 +531,6 @@ <h2>Cloud</h2>
529531
<aside class="icon-dropbox"></aside>
530532
<p>Use <b>Dropbox</b></p>
531533
</li>
532-
<li class="noLink">
533-
<p>More storage providers coming!</p>
534-
</li>
535534
</ul>
536535
<h2>Editing</h2>
537536
<ul>

style/bb/drawer.css

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,18 +210,31 @@ section[data-type="sidebar"] > nav > h2 {
210210
}
211211

212212
section[data-type="sidebar"] [role="toolbar"] {
213-
position: fixed;
214-
bottom: 0;
215-
left: 0;
216213
width: 80%;
217214
right: auto;
215+
background-color: #1d1d1d;
216+
color: #6f6f6f
218217
}
219218

220219
section[data-type="sidebar"][data-position="right"] [role="toolbar"] {
221220
left: auto;
222221
right: 0;
223222
}
224223

224+
section[data-type="sidebar"] [role="toolbar"] button[class^="icon-"],
225+
section[data-type="sidebar"] [role="toolbar"] [class*=" icon-"] {
226+
color: #fff;
227+
}
228+
229+
section[data-type="sidebar"] [role="toolbar"] button:active,
230+
section[data-type="sidebar"] [role="toolbar"] button.active {
231+
background-color: #111;
232+
}
233+
234+
section[data-type="sidebar"] [role="toolbar"] .icon-setting {
235+
padding-top: .3rem;
236+
}
237+
225238
section[data-type="sidebar"] [role="toolbar"] + nav {
226239
max-height: calc(100% - 5rem - 4rem);
227240
max-height: -moz-calc(100% - 5rem - 4rem);

style/bb/status.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Status
33
* ---------------------------------- */
44
section[role="status"] {
5-
background: #1f1f1f;
5+
background: #dfdfdf;
66
background-size: auto auto, 100% 100%;
77
overflow: hidden;
88
position: absolute;
@@ -14,7 +14,7 @@ section[role="status"] {
1414
min-height: 6.2rem;
1515
white-space: nowrap;
1616
font-family: "MozTT", Sans-serif;
17-
color: #fff;
17+
color: #1f1f1f;
1818
text-align: center;
1919
}
2020

@@ -40,4 +40,4 @@ section[role="status"] p strong {
4040
text-transform: uppercase;
4141
color: #0995b0;
4242
font-weight: normal;
43-
}
43+
}

style/bb/tabs.css

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
width: 100%;
1010
height: 100%;
1111
font-family: "Open Sans", Sans-serif;
12-
background: #C7C7C7;
12+
background: #dfdfdf;
1313
}
1414

1515
[role="tablist"] > [role="tab"] {
@@ -58,7 +58,6 @@
5858
text-align: center;
5959
float: left;
6060
width: 100%;
61-
background: #C7C7C7;
6261
position: relative;
6362
color: #737373;
6463
-moz-transition: all .5s;
@@ -69,8 +68,8 @@
6968
}
7069

7170
[role="tablist"] > [role="tab"] > a:active {
72-
background-color: #6f6f6f;
73-
color: #eee;
71+
background-color: #afafaf;
72+
color: #1f1f1f;
7473
}
7574

7675
[role="tablist"] > [role="tab"][aria-disabled="true"] > a:active {

style/bb/toolbars.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
position: fixed;
99
bottom: 0;
1010
left: 0;
11-
background-color: #1d1d1d;
11+
background-color: #dfdfdf;
1212
}
1313

1414
[role="toolbar"] ul {
@@ -41,13 +41,13 @@
4141

4242
[role="toolbar"] button:active,
4343
[role="toolbar"] button.active {
44-
background-color: #444;
44+
background-color: #afafaf;
4545
}
4646

4747
[role="toolbar"] button[class^="icon-"],
4848
[role="toolbar"] [class*=" icon-"] {
4949
font-size: 3rem;
50-
color: #fff;
50+
color: #1f1f1f;
5151
text-shadow: none;
5252
padding: 0 1rem;
5353
-moz-box-sizing: border-box;

style/desktop.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
right: 20%;
99
bottom: 20%;
1010
box-shadow: 0 0 20px black;
11-
padding: 5px;
1211
-webkit-transform: translateY(150%);
1312
-moz-transform: translateY(150%);
1413
-o-transform: translateY(150%);

style/headers.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ section > header:first-child {
99
box-sizing: border-box;
1010
-moz-box-sizing: border-box;
1111
-webkit-box-sizing: border-box;
12-
border-bottom: .2rem solid #aeaeae;
12+
border-bottom: none;
1313
}
1414

1515
section > header:first-child h1 {
@@ -21,7 +21,10 @@ section > header:first-child h1 {
2121
display: block;
2222
overflow: hidden;
2323
margin: 0 0 0 4rem;
24-
height: 100%
24+
height: 100%;
25+
-moz-box-sizing: border-box;
26+
-webkit-box-sizing: border-box;
27+
box-sizing: border-box;
2528
}
2629

2730
section > header:first-child h1 em {

style/main.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ form[role=dialog].current {
8181

8282
[data-type="list"] h2,
8383
[data-type="edit"] h2 {
84-
background: #CACACA;
84+
background: #dfdfdf;
8585
padding: 5px 20px;
8686
color: #2C2C2C;
8787
margin: 0 0;
@@ -126,7 +126,7 @@ form[role=dialog].current {
126126
}
127127

128128
[data-type="list"] li.fileListItem .fileItemDescription {
129-
background: #dfdfdf;
129+
background: #bbb;
130130
font-size: 1.2rem;
131131
max-height: 5rem;
132132
overflow: hidden;

style/night.css

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,8 @@
151151
}
152152

153153
.night [role="tablist"] > [role="tab"] > a:active {
154-
background-color: #2c2c2c;
154+
background-color: #444;
155+
color: #cacaca;
155156
}
156157

157158
.night [role="tablist"] > [role="tab"].selected > a {
@@ -173,14 +174,36 @@
173174

174175

175176
/* Toolbar */
177+
.night [role="toolbar"] {
178+
background-color: #222;
179+
}
180+
181+
.night [role="toolbar"] button:active,
182+
.night [role="toolbar"] button.active {
183+
background-color: #444;
184+
}
185+
186+
.night [role="toolbar"] button[class^="icon-"],
187+
.night [role="toolbar"] [class*=" icon-"] {
188+
color: #dfdfdf;
189+
}
190+
176191

192+
/* Tab Toolbar */
177193
.night .tabToolbar button,
178194
.night .tabToolbar .button,
179195
.night .tabToolbar input[type="button"] {
180196
color: #dfdfdf;
181197
}
182198

183199

200+
/* Status */
201+
.night section[role="status"] {
202+
background: #222;
203+
color: #dfdfdf;
204+
}
205+
206+
184207
/* Google Code Prettify */
185208
/* Tomorrow Night Bright Theme */
186209
.night .pln {

0 commit comments

Comments
 (0)