Skip to content

Commit c66582c

Browse files
committed
update
2 parents 10c2fe5 + 7051321 commit c66582c

25 files changed

+926
-265
lines changed

css/activities.css

Lines changed: 87 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,72 @@
9090
font-size: large;
9191
}
9292

93+
.trash-view {
94+
position: relative;
95+
background-color: white;
96+
max-width: 396px;
97+
max-height: 200px;
98+
overflow-y: auto;
99+
font-size: 16px;
100+
color: black;
101+
border: 2px solid #87cefa;
102+
list-style-type: none;
103+
margin: 0;
104+
padding: 0;
105+
text-align: left;
106+
}
107+
108+
.button-container {
109+
position: sticky;
110+
display: flex;
111+
justify-content: space-between;
112+
top: 0;
113+
z-index: 10;
114+
display: flex;
115+
gap: 10px;
116+
background: #2196F3;
117+
margin: 0;
118+
padding: 5px;
119+
border-bottom: 1px solid #d9d9d9;
120+
}
121+
122+
.trash-item {
123+
padding: 2px 12px;
124+
margin: 1px 0;
125+
border-radius: 4px;
126+
transition: background-color 0.3s;
127+
}
128+
129+
.trash-item.hover {
130+
background-color: #d9d9d9;
131+
}
132+
133+
.trash-item-icon {
134+
width: 30px;
135+
height: 30px;
136+
margin-right: 10px;
137+
vertical-align: middle;
138+
}
139+
140+
#restoreLastIcon, #restoreAllIcon {
141+
display: flex;
142+
align-items: center;
143+
justify-content: center;
144+
width: 48px;
145+
height: 48px;
146+
cursor: pointer;
147+
}
148+
149+
150+
.material-icons.md-48 {
151+
font-size: 32px;
152+
}
153+
154+
155+
.hidden {
156+
display: none;
157+
}
158+
93159
.ui-menu {
94160
position: relative;
95161
background-color: rgba(255, 255, 255, 1);
@@ -421,7 +487,7 @@ img.icon:hover {
421487
}
422488

423489
#loading-image-container {
424-
z-index: 99999;
490+
z-index: 89999;
425491
}
426492

427493
body {
@@ -982,6 +1048,7 @@ table {
9821048
#helpBodyDiv .message {
9831049
text-align: center;
9841050
line-height: 1.2;
1051+
margin: auto;
9851052
}
9861053

9871054
#helpBodyDiv .icon-container {
@@ -1769,3 +1836,22 @@ table {
17691836
clear: both;
17701837
}
17711838
}
1839+
.logo-container{
1840+
position: absolute;
1841+
bottom: 1px; /* Distance from the bottom */
1842+
right: 23px; /* Distance from the right */
1843+
padding: 0px;
1844+
border-radius: 5px;
1845+
cursor: pointer;
1846+
}
1847+
#link-to-sugarLabs:link ,
1848+
#link-to-sugarLabs:visited ,
1849+
#link-to-sugarLabs:hover ,
1850+
#link-to-sugarLabs:active {
1851+
color: #000;
1852+
}
1853+
.color-change {
1854+
fill : #033CD2;
1855+
stroke : #78E600;
1856+
stroke-width: 3;
1857+
}

css/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

dist/css/activities.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ img.icon:hover {
302302
background-color: rgba(139, 195, 74, 0.8);
303303
}
304304
#loading-image-container {
305-
z-index: 99999;
305+
z-index: 89999;
306306
}
307307
body {
308308
background-color: #92b5c8 !important;

dist/css/activity.css

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ img.icon:hover {
192192
background-color: rgba(139, 195, 74, 0.8);
193193
}
194194
#loading-image-container {
195-
z-index: 99999;
195+
z-index: 89999;
196196
}
197197
body {
198198
background-color: #9cf;
@@ -229,3 +229,36 @@ input.number {
229229
#canvas {
230230
overflow-y: visible;
231231
}
232+
.logo-container{
233+
position: absolute;
234+
bottom: 1px; /* Distance from the bottom */
235+
right: 23px; /* Distance from the right */
236+
padding: 0px;
237+
border-radius: 5px;
238+
cursor: pointer;
239+
}
240+
#link-to-sugarLabs:link ,
241+
#link-to-sugarLabs:visited ,
242+
#link-to-sugarLabs:hover ,
243+
#link-to-sugarLabs:active {
244+
color: #000;
245+
}
246+
.logo-container{
247+
position: absolute;
248+
bottom: 1px; /* Distance from the bottom */
249+
right: 23px; /* Distance from the right */
250+
padding: 0px;
251+
border-radius: 5px;
252+
cursor: pointer;
253+
}
254+
#link-to-sugarLabs:link ,
255+
#link-to-sugarLabs:visited ,
256+
#link-to-sugarLabs:hover ,
257+
#link-to-sugarLabs:active {
258+
color: #000;
259+
}
260+
.color-change {
261+
fill : #033CD2;
262+
stroke : #78E600;
263+
stroke-width: 4;
264+
}

0 commit comments

Comments
 (0)