Skip to content

Commit 92f2c05

Browse files
patches
1 parent 97a440c commit 92f2c05

3 files changed

Lines changed: 38 additions & 25 deletions

File tree

appdata/settings.html

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,20 @@
259259
border: var(--box-crisp);
260260
display: block;
261261
padding: var(--sizing-huge);
262+
position: relative;
262263
margin-bottom: 0.5em;
264+
overflow: hidden;
265+
266+
&>img.goodOne {
267+
position: absolute;
268+
width: 30%;
269+
height: 80%;
270+
top: 10%;
271+
right: 0;
272+
object-fit: contain;
273+
opacity: .3;
274+
transform: rotate(-15deg) scale(1.5);
275+
}
263276
}
264277

265278
supportb b {
@@ -1468,7 +1481,7 @@
14681481

14691482
#appslist {
14701483
display: grid;
1471-
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
1484+
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
14721485
gap: .5em;
14731486
}
14741487

@@ -2787,7 +2800,7 @@ <h2 style="margin-bottom: 3px;">Nova OS <span style="font-weight: normal;">Lazar
27872800
<div class="supportbtns">
27882801
<a id="membershipsbtn" onclick="window.open('https://github.com/runnova/NovaOS')">Star the repo</a>
27892802
</div>
2790-
2803+
<img src="https://runnova.github.io/NovaOS/n.png" class="goodOne">
27912804
<script>
27922805
function supportexpand() {
27932806
if (document.getElementById("membershipsbtn").style.display == "none") {
@@ -2925,7 +2938,7 @@ <h1>Default apps</h1>
29252938
if (currentprov) {
29262939
document.getElementById("defappprovider").value = currentprov;
29272940
}
2928-
2941+
29292942
let registry = await window.parent.getSetting('full', "AppRegistry.json");
29302943

29312944
let appslist = document.getElementById("appslist");

nova.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/* sizing */
1818
--sizing-normal: .5em;
19-
--sizing-huge: .3em;
19+
--sizing-huge: 1em;
2020
--sizing-nano: .2em;
2121

2222
--siz-radius1: 0.5em;

style.css

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,24 @@ nav [navobj] {
155155
display: block;
156156
}
157157

158-
[navobj] [app-shortcut] {
158+
[navobj] .app-shortcut {
159159
background-color: transparent;
160160
cursor: pointer;
161161
animation: appop 0.3s var(--time2);
162162
transition: var(--time1);
163+
border-radius: 0;
164+
165+
&:first-child {
166+
border-radius: var(--siz-radius1) 0 0 var(--siz-radius1);
167+
}
168+
169+
&:last-child {
170+
border-radius: 0 var(--siz-radius1) var(--siz-radius1) 0;
171+
}
172+
173+
&:only-child {
174+
border-radius: var(--siz-radius1);
175+
}
163176
}
164177

165178
#novaic {
@@ -267,23 +280,13 @@ nav [navobj] {
267280
background-color: transparent;
268281
padding: 10px;
269282
cursor: pointer;
283+
border-radius: var(--siz-radius1);
270284
width: 90px;
271285
animation: pop var(--time1);
272286
display: inline-block;
273287
border: 1px solid transparent;
274288
text-align: center;
275289
align-self: flex-start;
276-
277-
&:first-child {
278-
border-radius: var(--siz-radius1) 0 0 var(--siz-radius1);
279-
}
280-
281-
&:last-child {
282-
border-radius: 0 var(--siz-radius1) var(--siz-radius1) 0;
283-
}
284-
&:only-child {
285-
border-radius: var(--siz-radius1);
286-
}
287290
}
288291

289292
.app-shortcut.tooltip .tooltiptext {
@@ -381,18 +384,16 @@ nav [navobj] {
381384
box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
382385
outline: none;
383386
animation: dmodthingy .3s cubic-bezier(0.36, 0.38, 0, 0.94);
387+
margin-bottom: 3.8em;
384388
}
385389

386390
#appdmod {
387-
margin-bottom: 3.8em;
388391
background-color: var(--col-bg1);
389392
border: 1px solid #ffffff0c;
390-
padding: 1em .3em;
391393
}
392394

393395
#searchwindow {
394-
padding: 0.7em;
395-
margin-bottom: 60px;
396+
padding: .3em;
396397
background-color: var(--col-bg1);
397398
border: 1px solid #ffffff0c;
398399
padding-bottom: 9px;
@@ -406,12 +407,12 @@ nav [navobj] {
406407
display: flex;
407408
flex-direction: column;
408409
height: 100%;
410+
padding: .5em;
409411
justify-content: space-between;
410412
}
411413

412414
.strtsearcont {
413415
display: flex;
414-
margin: 0 10px;
415416
margin-top: 10px;
416417
flex-wrap: nowrap;
417418
flex-direction: row;
@@ -659,8 +660,8 @@ nav [navobj] {
659660
height: auto;
660661

661662
& svg {
662-
width: 2.2em;
663-
height: 2.2em;
663+
width: 1.5em;
664+
height: 1.5em;
664665
margin-right: 0.3em;
665666
}
666667

@@ -723,7 +724,6 @@ nav [navobj] {
723724
justify-items: center;
724725
justify-content: space-around;
725726
align-items: start;
726-
padding: 0 0.5em;
727727
}
728728

729729
.notifbtn {
@@ -1568,6 +1568,7 @@ dialog#terminal {
15681568
flex-direction: row;
15691569
flex-wrap: nowrap;
15701570
width: 100%;
1571+
align-items: stretch;
15711572
}
15721573

15731574
.searchside {
@@ -1716,7 +1717,6 @@ dialog#terminal {
17161717
border-radius: var(--siz-radius2);
17171718
margin-left: 0.7em;
17181719
background: linear-gradient(90deg, #00000021 0%, transparent 30%);
1719-
height: 100%;
17201720
}
17211721

17221722
#seprw-icon {

0 commit comments

Comments
 (0)