Skip to content

Commit

Permalink
feat(htmleditor): Update vars
Browse files Browse the repository at this point in the history
  • Loading branch information
marker dao ® committed Nov 20, 2024
1 parent 576790e commit fb5ade4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}

::ng-deep .value-title {
font-size: 18px;
font-size: var(--dx-font-size-sm);
font-weight: 500;
}

Expand All @@ -13,9 +13,9 @@
overflow: auto;
height: 210px;
white-space: pre-wrap;
border: 1px solid #808080;
border: 1px solid var(--dx-color-border);
padding: 16px;
background-color: #FFF;
background-color: var(--dx-color-main-bg);
}

.options {
Expand Down
6 changes: 3 additions & 3 deletions apps/demos/Demos/HtmlEditor/MarkdownSupport/React/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}

.value-title {
font-size: 18px;
font-size: var(--dx-font-size-sm);
font-weight: 500;
}

Expand All @@ -13,9 +13,9 @@
overflow: auto;
height: 210px;
white-space: pre-wrap;
border: 1px solid #808080;
border: 1px solid var(--dx-color-border);
padding: 16px;
background-color: #FFF;
background-color: var(--dx-color-main-bg);
}

.options {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}

.value-title {
font-size: 18px;
font-size: var(--dx-font-size-sm);
font-weight: 500;
}

Expand All @@ -13,9 +13,9 @@
overflow: auto;
height: 210px;
white-space: pre-wrap;
border: 1px solid #808080;
border: 1px solid var(--dx-color-border);
padding: 16px;
background-color: #FFF;
background-color: var(--dx-color-main-bg);
}

.options {
Expand Down
6 changes: 3 additions & 3 deletions apps/demos/Demos/HtmlEditor/MarkdownSupport/Vue/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const converter = {
}
.value-title {
font-size: 18px;
font-size: var(--dx-font-size-sm);
font-weight: 500;
}
Expand All @@ -95,9 +95,9 @@ const converter = {
overflow: auto;
height: 210px;
white-space: pre-wrap;
border: 1px solid #808080;
border: 1px solid var(--dx-color-border);
padding: 16px;
background-color: #FFF;
background-color: var(--dx-color-main-bg);
}
.options {
Expand Down
6 changes: 3 additions & 3 deletions apps/demos/Demos/HtmlEditor/MarkdownSupport/jQuery/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}

.value-title {
font-size: 18px;
font-size: var(--dx-font-size-sm);
font-weight: 500;
}

Expand All @@ -13,9 +13,9 @@
overflow: auto;
height: 210px;
white-space: pre-wrap;
border: 1px solid #808080;
border: 1px solid var(--dx-color-border);
padding: 16px;
background-color: #FFF;
background-color: var(--dx-color-main-bg);
}

.options {
Expand Down

0 comments on commit fb5ade4

Please sign in to comment.