Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion apps/app/public/ext-context7.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions apps/app/public/ext-figma.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions apps/app/public/ext-github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/app/public/ext-linear.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/app/public/ext-sentry.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/app/public/ext-stripe.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 4 additions & 8 deletions apps/app/public/ipollowork-mark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/app/public/sidebar-icon/figma-folder-closed.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions apps/app/public/sidebar-icon/figma-layout-panel-top.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/app/public/sidebar-icon/figma-square-pen.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions apps/app/public/sidebar-icon/toy-brick.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 27 additions & 4 deletions apps/app/src/app/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,10 @@
--dls-radius-lg: 24px;
--dls-shell-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
--dls-card-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
--project-dialog-accent: #1fbac0;
--project-dialog-accent-strong: #087b82;
--project-dialog-notice: #f4f4ee;
--project-dialog-option-border: #e7e7e8;
--background: var(--slate-1);
--foreground: var(--slate-12);
--card: var(--slate-1);
Expand Down Expand Up @@ -283,6 +287,22 @@ body {
-moz-osx-font-smoothing: auto;
}

html:lang(zh) .settings-description {
font-weight: 500;
}

[data-settings-shell] :where(
button:not([role="switch"]):not([role="checkbox"]):not([role="radio"]),
[role="button"]:not([role="switch"]):not([role="checkbox"]):not([role="radio"]),
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]),
textarea,
select,
[role="combobox"],
[data-slot="table-container"]
) {
border-radius: 8px !important;
}

*::-webkit-scrollbar {
width: 10px;
height: 10px;
Expand Down Expand Up @@ -435,10 +455,9 @@ body {
.ow-input {
appearance: none;
width: 100%;
border: 0;
border: 1px solid var(--slate-6);
border-radius: 0.9rem;
background: var(--slate-1);
box-shadow: inset 0 0 0 1px var(--slate-6);
color: var(--dls-text-primary);
}

Expand All @@ -447,8 +466,8 @@ body {
}

.ow-input:focus {
outline: none;
box-shadow: inset 0 0 0 1px rgba(var(--dls-accent-rgb), 0.28), 0 0 0 3px rgba(var(--dls-accent-rgb), 0.08);
border-color: rgba(var(--dls-accent-rgb), 0.28);
outline: 3px solid rgba(var(--dls-accent-rgb), 0.08);
}

/* Global clickable elements pointer */
Expand Down Expand Up @@ -557,6 +576,10 @@ select:disabled {

.dark,
[data-theme="dark"] {
--project-dialog-accent: #1fbac0;
--project-dialog-accent-strong: #a9e7ea;
--project-dialog-notice: var(--slate-3);
--project-dialog-option-border: var(--slate-6);
--background: var(--slate-1);
--foreground: var(--slate-12);
--card: var(--slate-2);
Expand Down
Loading
Loading