mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
web: mobile improvements
- all buttons now reflect that they're pressed or hovered - settings feel way better on mobile - settings header has been completely remade
This commit is contained in:
parent
49e2df425d
commit
7b289bfb16
6 changed files with 54 additions and 18 deletions
|
@ -52,10 +52,10 @@
|
|||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
|
||||
justify-content: start;
|
||||
text-align: left;
|
||||
transform: none;
|
||||
padding: 6px 12px;
|
||||
}
|
||||
|
||||
.checkbox-text {
|
||||
|
|
|
@ -30,6 +30,18 @@
|
|||
#settings-section-categories {
|
||||
background: var(--button);
|
||||
border-radius: var(--border-radius);
|
||||
box-shadow: var(--button-box-shadow);
|
||||
}
|
||||
|
||||
#settings-section-categories > :global(:not(.settings-tab:last-child)) {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
box-shadow: 0 3px 0px -1.2px var(--button-stroke);
|
||||
}
|
||||
|
||||
#settings-section-categories > :global(:not(.settings-tab:first-child)) {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -95,6 +95,7 @@
|
|||
@media screen and (max-width: 750px) {
|
||||
.settings-tab {
|
||||
background: none;
|
||||
padding: 9px;
|
||||
--small-padding: 5px;
|
||||
}
|
||||
|
||||
|
|
|
@ -70,9 +70,15 @@
|
|||
opacity: 1;
|
||||
}
|
||||
|
||||
.sidebar-tab:active:not(.active) {
|
||||
opacity: 1;
|
||||
background-color: var(--sidebar-hover);
|
||||
}
|
||||
|
||||
@media (hover: hover) {
|
||||
.sidebar-tab:hover {
|
||||
.sidebar-tab:hover:not(.active) {
|
||||
opacity: 1;
|
||||
background-color: var(--sidebar-hover);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -26,9 +26,11 @@
|
|||
--button-hover-transparent: rgba(0, 0, 0, 0.06);
|
||||
--button-stroke: rgba(0, 0, 0, 0.05);
|
||||
--button-text: #282828;
|
||||
--button-box-shadow: 0 0 0 1.5px var(--button-stroke) inset;
|
||||
|
||||
--sidebar-bg: #000000;
|
||||
--sidebar-highlight: #ffffff;
|
||||
--sidebar-hover: rgba(255, 255, 255, 0.1);
|
||||
|
||||
--input-border: #8d8d95;
|
||||
|
||||
|
@ -129,7 +131,7 @@
|
|||
cursor: pointer;
|
||||
background-color: var(--button);
|
||||
color: var(--button-text);
|
||||
box-shadow: 0 0 0 1.5px var(--button-stroke) inset;
|
||||
box-shadow: var(--button-box-shadow);
|
||||
}
|
||||
|
||||
:global(:focus-visible) {
|
||||
|
@ -139,7 +141,7 @@
|
|||
}
|
||||
|
||||
:global(button:active) {
|
||||
transform: scale(0.95);
|
||||
background-color: var(--button-hover);
|
||||
}
|
||||
|
||||
:global(.button.active) {
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
|
||||
let screenWidth: number;
|
||||
|
||||
$: currentPageTitle = $page.url.pathname.split("/").at(-1);
|
||||
|
||||
$: isMobile = screenWidth <= 750;
|
||||
$: isHome = $page.url.pathname === `/settings`;
|
||||
</script>
|
||||
|
@ -23,11 +25,19 @@
|
|||
<div id="settings-page">
|
||||
<div id="settings-sidebar">
|
||||
<div id="settings-header" class:back-visible={!isHome && isMobile}>
|
||||
{#if !isHome && isMobile}
|
||||
<a class="back-button" href="/settings">
|
||||
<IconChevronLeft />
|
||||
<h2 id="settings-page-title">settings</h2>
|
||||
</a>
|
||||
{#if isMobile}
|
||||
{#if !isHome}
|
||||
<a class="back-button" href="/settings">
|
||||
<IconChevronLeft />
|
||||
</a>
|
||||
{/if}
|
||||
<h3 id="settings-page-title">
|
||||
settings
|
||||
{#if !isHome}
|
||||
<span class="title-slash"> / </span>
|
||||
{currentPageTitle}
|
||||
{/if}
|
||||
</h3>
|
||||
{:else}
|
||||
<h2 id="settings-page-title">settings</h2>
|
||||
{/if}
|
||||
|
@ -77,7 +87,9 @@
|
|||
#settings-page {
|
||||
--settings-nav-width: 250px;
|
||||
--settings-padding: 30px;
|
||||
--settings-padding-small: calc(var(--settings-padding) - var(--padding));
|
||||
--settings-padding-small: calc(
|
||||
var(--settings-padding) - var(--padding)
|
||||
);
|
||||
display: grid;
|
||||
width: 100%;
|
||||
grid-template-columns: var(--settings-nav-width) 1fr;
|
||||
|
@ -110,11 +122,11 @@
|
|||
}
|
||||
|
||||
#settings-navigation {
|
||||
gap: 12px;
|
||||
gap: var(--padding);
|
||||
}
|
||||
|
||||
#settings-header {
|
||||
--back-padding: 6px;
|
||||
--back-padding: calc(var(--padding) / 2);
|
||||
}
|
||||
|
||||
.back-button {
|
||||
|
@ -123,7 +135,9 @@
|
|||
color: var(--secondary);
|
||||
gap: var(--back-padding);
|
||||
padding: var(--back-padding);
|
||||
padding-right: calc(var(--back-padding) * 2);
|
||||
|
||||
position: absolute;
|
||||
left: var(--back-padding);
|
||||
}
|
||||
|
||||
.back-button:active {
|
||||
|
@ -166,10 +180,7 @@
|
|||
position: sticky;
|
||||
padding: var(--padding);
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
#settings-header.back-visible {
|
||||
padding: calc(var(--padding) - var(--back-padding));
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#settings-sidebar {
|
||||
|
@ -178,7 +189,11 @@
|
|||
|
||||
#settings-page-title {
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
letter-spacing: -0.3px;
|
||||
}
|
||||
|
||||
.title-slash {
|
||||
color: var(--gray);
|
||||
}
|
||||
|
||||
#settings-navigation {
|
||||
|
|
Loading…
Reference in a new issue