Skip to content

Commit

Permalink
Merge pull request #514 from madeindjs/WF-35
Browse files Browse the repository at this point in the history
  • Loading branch information
ramedina86 authored Aug 19, 2024
2 parents 68167ad + 33eb0c4 commit abe8f4f
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 6 deletions.
1 change: 1 addition & 0 deletions src/ui/src/builder/BuilderHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ const customHandlerModalCloseAction: ModalAction = {
}
.syncHealth {
cursor: pointer;
background: var(--builderHeaderBackgroundHoleColor);
border-radius: 18px;
padding-left: 16px;
Expand Down
1 change: 1 addition & 0 deletions src/ui/src/builder/BuilderTreeBranch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ onMounted(() => {
color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
cursor: pointer;
}
.main.matching {
Expand Down
10 changes: 9 additions & 1 deletion src/ui/src/builder/sharedStyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
--builderSubtleSeparatorColor: rgba(0, 0, 0, 0.05);
--builderIntenseSeparatorColor: rgba(0, 0, 0, 0.2);
--builderSelectedColor: rgba(210, 234, 244, 0.8);
--builderIntenseSelectedColor: #6985FF;
--builderIntenseSelectedColor: #6985ff;
--builderSubtleHighlightColor: rgba(0, 0, 0, 0.05);
--builderSubtleHighlightColorSolid: #f2f2f2;
--builderDisabledColor: rgb(180, 180, 180);
Expand Down Expand Up @@ -106,6 +106,14 @@ textarea[variant="code"] {
font-family: Consolas, monospace;
}

input[type="button"],
input[type="submit"],
input[type="radio"],
input[type="reset"],
input[type="color"] {
cursor: pointer;
}

code {
font-family: monospace;
}
Expand Down
5 changes: 5 additions & 0 deletions src/ui/src/core_components/input/CoreCheckboxInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@ function getCheckedKeys() {
font-size: 0.75rem;
}
label,
input {
cursor: pointer;
}
input {
margin-right: 8px;
accent-color: var(--accentColor);
Expand Down
1 change: 1 addition & 0 deletions src/ui/src/core_components/input/CoreDateInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ input {
padding: 8.5px 12px 8.5px 12px;
font-size: 0.875rem;
outline: none;
cursor: text;
}
input:focus {
Expand Down
7 changes: 6 additions & 1 deletion src/ui/src/core_components/input/CoreRadioInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</template>

<script lang="ts">
import { inject, Ref } from "vue";
import { inject } from "vue";
import { ref } from "vue";
import { FieldCategory, FieldType } from "../../writerTypes";
import {
Expand Down Expand Up @@ -144,6 +144,11 @@ const { formValue, handleInput } = useFormValueBroker(
font-size: 0.75rem;
}
label,
input {
cursor: pointer;
}
input {
margin-right: 8px;
accent-color: var(--accentColor);
Expand Down
1 change: 1 addition & 0 deletions src/ui/src/core_components/input/CoreRatingInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ const feedbackRating = computed(() => {
gap: 8px;
flex-wrap: nowrap;
position: relative;
cursor: pointer;
}
.unit {
Expand Down
1 change: 1 addition & 0 deletions src/ui/src/core_components/input/CoreTimeInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ input {
padding: 8.5px 12px 8.5px 12px;
font-size: 0.875rem;
outline: none;
cursor: text;
}
input:focus {
Expand Down
1 change: 1 addition & 0 deletions src/ui/src/core_components/layout/CoreSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ onMounted(() => {
justify-content: center;
stroke: var(--primaryTextColor);
border: 1px solid var(--separatorColor);
pointer: cursor;
}
.collapserContainer .collapserArrow {
Expand Down
15 changes: 11 additions & 4 deletions src/ui/src/renderer/sharedStyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ h2 {
h3 {
font-size: 1.25rem;
font-weight: 500;
line-height: 120%;
line-height: 120%;
}

h4 {
Expand Down Expand Up @@ -55,6 +55,14 @@ code {
background-color: var(--separatorColor);
}

input[type="button"],
input[type="submit"],
input[type="radio"],
input[type="reset"],
input[type="color"] {
cursor: pointer;
}

.component {
font-size: 0.875rem;
}
Expand Down Expand Up @@ -97,10 +105,9 @@ code {
display: block;
}

[data-writer-container].crackedContainer.horizontal
> [data-writer-slot-of-id] {
[data-writer-container].crackedContainer.horizontal > [data-writer-slot-of-id] {
animation: appearHorizontal 0.2s forwards;
align-self:center;
align-self: center;
display: block;
}

Expand Down
1 change: 1 addition & 0 deletions src/ui/src/wds/WdsDropdownInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ select {
max-width: 100%;
width: fit-content;
outline: none;
cursor: pointer;
}
select:focus {
Expand Down

0 comments on commit abe8f4f

Please sign in to comment.