Skip to content

Commit 66c907f

Browse files
committed
improved list context menu, skin style tweaks
1 parent 46523d9 commit 66c907f

9 files changed

+108
-63
lines changed

www/css/sepiaFW-cards.css

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
/* header */
6363
.sepiaFW-cards-list-title {
6464
display: flex;
65+
flex-wrap: wrap;
6566
justify-content: space-between;
6667
position: relative;
6768
/*background: rgba(205, 235, 205, 0.90);*/
@@ -71,7 +72,7 @@
7172
margin: 0px 5px 0px 5px;
7273
width: calc(100% - 10px);
7374
min-height: 38px;
74-
padding: 1px;
75+
padding-top: 1px;
7576
text-align: center;
7677
font-weight: bold;
7778
line-height: 27px;
@@ -94,18 +95,31 @@
9495
}
9596
.sepiaFW-cards-list-contextMenu {
9697
position: absolute;
97-
top: 39px;
98+
top: 38px;
9899
right: 0px;
99100
line-height: 17px;
100101
font-size: 13px;
101102
display: none;
103+
width: 100%;
104+
order: 4;
102105
}
103-
.sepiaFW-cards-list-contextMenu li:first-of-type{
106+
.sepiaFW-cards-list-contextMenu > ul {
107+
display: flex;
108+
flex-wrap: wrap;
109+
justify-content: space-between;
110+
}
111+
.sepiaFW-cards-list-contextMenu li {
112+
padding: 2px 6px;
113+
display: flex;
114+
justify-content: center;
115+
align-items: center;
116+
}
117+
/*.sepiaFW-cards-list-contextMenu li:first-of-type{
104118
margin-top: 0px;
105119
}
106120
.sepiaFW-cards-list-contextMenu li:last-of-type{
107121
margin-bottom: 0px;
108-
}
122+
}*/
109123
.sepiaFW-cards-list-saveBtn {
110124
/*float: left;*/
111125
opacity: 0.10;

www/css/sepiaFW-skin-grid.css

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ html {
9797
.sepiaFW-menu {
9898
background: rgba(21, 171, 195, 0.95);
9999
color: #fff;
100+
box-shadow: inset 0 0 5px 1px #fff;
100101
}
101102
.sepiaFW-menu input {
102103
background: transparent !important;
103104
}
104105
#sepiaFW-chat-menu {
105106
background: rgba(21, 171, 195, 1.00);
106107
color: #fff;
107-
box-shadow: inset 0 0 5px 1px #fff;
108108
height: calc(100% - 106px);
109109
}
110110
#sepiaFW-chat-menu:not(.full-screen) {
@@ -122,6 +122,9 @@ html {
122122
border: 1px solid #fff;
123123
box-shadow: 0 0 5px #fff;
124124
}
125+
#sepiaFW-chat-menu li {
126+
background: rgba(255, 255, 255, 0.14);
127+
}
125128
#sepiaFW-chat-menu button:hover {
126129
background: #fff;
127130
color: #102030;
@@ -131,7 +134,6 @@ html {
131134
color: #fff;
132135
}
133136
#sepiaFW-chat-controls-more-menu {
134-
box-shadow: inset 0 0 5px 1px #fff;
135137
bottom: 56px;
136138
padding-bottom: 4px;
137139
}
@@ -143,8 +145,8 @@ html {
143145
background: #ECEBE7;
144146
color: #102030;
145147
}
146-
#sepiaFW-chat-menu li {
147-
background: rgba(255, 255, 255, 0.14);
148+
#sepiaFW-chat-channel-view {
149+
top: 51px;
148150
}
149151
.sepiaFW-toggle-btn .on {
150152
background: #ceff1a;

www/css/sepiaFW-skin-malachite.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ html {
9494
.sepiaFW-menu input {
9595
background: transparent !important;
9696
}
97+
.sepiaFW-cards-list-contextMenu {
98+
background: #07333a;
99+
}
97100
#sepiaFW-chat-controls-more-menu {
98101
background: #07333a;
99102
}

www/css/sepiaFW-skin-minimal.css

Lines changed: 38 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ html {
1414
}
1515
}
1616

17-
#sepiaFW-pC { background-color: #000; }
18-
#sepiaFW-sC { background-color: #fff; }
19-
#sepiaFW-sC2 { background-color: #222226; }
20-
#sepiaFW-aC { background-color: #ff0000; }
21-
#sepiaFW-aC2 { background-color: #dfe0f5; }
22-
#sepiaFW-asC { background-color: #ceff1a; }
23-
#sepiaFW-adC { background-color: #ceff1a; }
24-
#sepiaFW-lC { background-color: rgba(200, 200, 200, 0.50); }
17+
#sepiaFW-pC { background-color: #000; }
18+
#sepiaFW-sC { background-color: #fff; }
19+
#sepiaFW-sC2 { background-color: #19191b; }
20+
#sepiaFW-aC { background-color: #ff0000; }
21+
#sepiaFW-aC2 { background-color: #dfe0f5; }
22+
#sepiaFW-asC { background-color: #ceff1a; }
23+
#sepiaFW-adC { background-color: #ceff1a; }
24+
#sepiaFW-lC { background-color: rgba(200, 200, 200, 0.50); }
2525

2626
#sepiaFW-login-box, #sepiaFW-nav-bar, #sepiaFW-chat-controls-form, #sepiaFW-chat-controls-right {
2727
background: #000;
@@ -61,7 +61,7 @@ html {
6161
}
6262
.sepiaFW-layer-header {
6363
border: 1px solid #fff;
64-
background: #222226;
64+
background: #19191b;
6565
}
6666
.sepiaFW-myEvents-titleNote,
6767
.sepiaFW-myFirstStart-titleNote,
@@ -90,7 +90,7 @@ html {
9090
#sepiaFW-assist-btn-area button,
9191
.sepiaFW-touch-device #sepiaFW-assist-btn-area button:hover {
9292
border: 0px solid #fff;
93-
background: #222226 !important;
93+
background: #19191b !important;
9494
}
9595
.sepiaFW-notouch-device #sepiaFW-assist-btn-area button:hover {
9696
/*border: 1px solid #888;*/
@@ -111,14 +111,17 @@ html {
111111
}
112112

113113
.sepiaFW-menu {
114-
background: #222226;
114+
background: #19191b;
115115
color: #fff;
116116
}
117117
.sepiaFW-menu input {
118118
background: transparent !important;
119119
}
120+
.sepiaFW-cards-list-contextMenu {
121+
background: #121212;
122+
}
120123
#sepiaFW-chat-menu {
121-
background: #222226;
124+
background: #19191b;
122125
color: #fff;
123126
}
124127
#sepiaFW-chat-menu-head-border {
@@ -141,7 +144,10 @@ html {
141144
color: #fff;
142145
}
143146
#sepiaFW-chat-menu li {
144-
background: rgba(255, 255, 255, 0.06);
147+
background: rgba(155, 155, 155, 0.04);
148+
}
149+
.sepiaFW-notouch-device .sepiaFW-menu li:hover {
150+
background: rgba(155, 155, 155, 0.07) !important;
145151
}
146152
.sepiaFW-toggle-btn .on {
147153
background: #ceff1a;
@@ -180,7 +186,7 @@ html {
180186
}
181187

182188
#sepiaFW-chat-output .statusUpdate {
183-
background: rgba(255, 255, 255, 0.10);
189+
background: #121212;
184190
color: #fff;
185191
}
186192
#sepiaFW-chat-output article:not(.statusUpdate) {
@@ -198,13 +204,13 @@ html {
198204
border-color: #fff;
199205
}
200206
#sepiaFW-chat-output article.chatMe b{
201-
color: #fff;
207+
color: #888;
202208
}
203209
#sepiaFW-chat-output article.chatMe span{
204210
color: #fff;
205211
}
206212
#sepiaFW-chat-output article.chatAssistant {
207-
background: rgba(34, 34, 38, 0.85);
213+
background: #121212;
208214
color: #fff;
209215
border-color: #fff;
210216
}
@@ -225,12 +231,12 @@ html {
225231
}
226232

227233
.sepiaFW-button {
228-
background-color: #222226;
234+
background-color: #19191b;
229235
color: #fff;
230236
}
231237
.sepiaFW-button:hover {
232238
background-color: #fff;
233-
color: #222226;
239+
color: #19191b;
234240
}
235241

236242
#sepiaFW-chat-controls-swipe-area .sepiaFW-swipeBar-switchable {
@@ -253,15 +259,15 @@ html {
253259
/*----- cards ------*/
254260

255261
.sepiaFW-cards-flexSize-container {
256-
background: rgba(255, 255, 255, 0.07);
262+
background: #121212;
257263
}
258264

259265
.sepiaFW-help-view {
260-
background: rgba(33, 33, 33, 0.75);
266+
background: #121212;
261267
}
262268

263269
.sepiaFW-cards-list-title {
264-
background: #222226;
270+
background: #19191b;
265271
color: #fff;
266272
}
267273
.sepiaFW-cards-list-body {
@@ -272,20 +278,27 @@ html {
272278
color: #fff;
273279
}
274280
.sepiaFW-cards-list-body .listElement .checked {
275-
background: rgba(206, 255, 26, 0.95) !important;
281+
background: #c4f31a !important;
276282
}
277-
.sepiaFW-cards-list-body .listElement .listRight:hover {
278-
background: rgba(255, 0, 0, 0.95) !important;
283+
.sepiaFW-notouch-device .sepiaFW-cards-list-body .listElement .unchecked:hover {
284+
background: #ddd !important;
285+
}
286+
.sepiaFW-notouch-device .sepiaFW-cards-list-body .listElement .listRight:hover {
287+
background: #f30000 !important;
279288
}
280289

281290
.sepiaFW-cards-list-body .weatherNowSmall .weatherNowSmallImage {
282-
background: #222226;
291+
background: #000 !important;
283292
}
284293

285294
.sepiaFW-cards-list-footer {
286295
background: transparent;
287296
}
288297

298+
#sepiaFW-audio-ctrls-canvas {
299+
background: #404050;
300+
}
301+
289302
/*----- teachUI -----*/
290303

291304
#sepiaFW-teachUI-view {

www/css/sepiaFW-skin-myMessage.css

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ html {
6666
color: #000;
6767
}
6868

69-
#sepiaFW-chat-menu li {
70-
background: rgba(235, 235, 235, 0.25);
71-
}
7269
.sepiaFW-menu {
7370
background: #fff !important;
7471
color: #000 !important;
@@ -90,6 +87,19 @@ html {
9087
border: 0px !important;
9188
border-bottom: 1px solid white !important;
9289
}
90+
#sepiaFW-chat-menu:not(.full-screen) {
91+
border-top: 0;
92+
border-bottom: 0;
93+
}
94+
#sepiaFW-chat-menu li {
95+
background: rgba(235, 235, 235, 0.25);
96+
}
97+
#sepiaFW-chat-channel-view {
98+
border-top: 0;
99+
}
100+
#sepiaFW-chat-controls-more-menu:not(.full-screen) {
101+
border-bottom: 0;
102+
}
93103

94104
#sepiaFW-nav-label-note{
95105
border: 1px solid rgba(166, 58, 80, 1.0);

www/css/sepiaFW-skin-neo-sepia.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ html {
7171
background:#000;
7272
color: #fff;
7373
}
74+
.sepiaFW-cards-list-contextMenu {
75+
background: #222;
76+
}
7477
#sepiaFW-chat-controls-more-menu button {
7578
background: #fff;
7679
color: #000;
@@ -175,7 +178,7 @@ html {
175178
/*----- cards ------*/
176179

177180
.sepiaFW-cards-list-title {
178-
background: #000; /*rgba(225, 225, 245, 1.00);*/
181+
background: #121212; /*rgba(225, 225, 245, 1.00);*/
179182
color: #fff; /*#000;*/
180183
}
181184
.sepiaFW-cards-list-footer {

www/css/sepiaFW-skin-os1.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ html {
8080
.sepiaFW-menu input {
8181
background: transparent !important;
8282
}
83+
.sepiaFW-cards-list-contextMenu {
84+
background: #4f4c4a;
85+
}
8386
#sepiaFW-chat-menu {
8487
background: rgba(82, 67, 53, 1.0);
8588
color: #fcf9ee;

www/css/sepiaFW-style.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,9 +1040,9 @@ body {
10401040
#sepiaFW-chat-channel-view {
10411041
border-radius: 0px 0px 3px 3px;
10421042
position: absolute;
1043-
left: 2px;
1044-
top: 52px;
1045-
width: calc(100% - 4px);
1043+
left: 0px;
1044+
top: 50px;
1045+
width: calc(100% - 0px);
10461046
max-width: none;
10471047
max-height: calc(100% - 109px);
10481048
}

0 commit comments

Comments
 (0)