Skip to content

Commit

Permalink
Merge pull request #235 from slavamuravey/fix-example-style
Browse files Browse the repository at this point in the history
Fix example style
  • Loading branch information
slavamuravey authored Aug 2, 2024
2 parents 6604e51 + d60ccbe commit bd59522
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 65 deletions.
64 changes: 64 additions & 0 deletions example/_example.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
@mixin style-common($background-color, $text-color, $component-background, $disabled-color) {
body {
font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
height: 100%;
margin: 0;
background: $background-color;
color: $text-color;
}

.dock-tabpane > div {
padding: 20px;
}

.top-panel {
position: absolute;
display: flex;
align-items: center;
padding: 0 20px;
}

.btn {
display: inline-block;
margin: 5px;
font-weight: 400;
text-align: center;
vertical-align: middle;
user-select: none;
-webkit-user-select: none;
color: #212529;
background-color: $component-background;
border: 1px solid #e9ecef;
padding: 3px 10px;
font-size: 1rem;
line-height: 1.5;
border-radius: 0.25rem;
cursor: pointer;
}


.btn:hover {
color: #000;
background-color: #f8f8f8;
border-color: #cbd3da;
text-decoration: none;
}

.btn:focus {
outline: 0;
}

.btn.disabled {
color: $disabled-color;
background-color: #f8f8f8;
border-color: #e9ecef;
opacity: 0.65;
}

iframe {
box-sizing: border-box;
border: none;
width: 100%;
height: 100%;
}
}
3 changes: 2 additions & 1 deletion example/style-dark.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
@import "./style";
@use "./example";
@import "../style/index-dark";
@include example.style-common($background-color, $text-color, $component-background, $disabled-color);
66 changes: 2 additions & 64 deletions example/style.scss
Original file line number Diff line number Diff line change
@@ -1,65 +1,3 @@
@use "./example";
@import "../style/index-light";

body {
font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
height: 100%;
margin: 0;
background: $background-color;
color: $text-color;
}

.dock-tabpane > div {
padding: 20px;
}

.top-panel {
position: absolute;
display: flex;
align-items: center;
padding: 0 20px;
}

.btn {
display: inline-block;
margin: 5px;
font-weight: 400;
text-align: center;
vertical-align: middle;
user-select: none;
-webkit-user-select: none;
color: #212529;
background-color: $component-background;
border: 1px solid #e9ecef;
padding: 3px 10px;
font-size: 1rem;
line-height: 1.5;
border-radius: 0.25rem;
cursor: pointer;
}


.btn:hover {
color: #000;
background-color: #f8f8f8;
border-color: #cbd3da;
text-decoration: none;
}

.btn:focus {
outline: 0;
}

.btn.disabled {
color: $disabled-color;
background-color: #f8f8f8;
border-color: #e9ecef;
opacity: 0.65;
}

iframe {
box-sizing: border-box;
border: none;
width: 100%;
height: 100%;
}

@include example.style-common($background-color, $text-color, $component-background, $disabled-color);

0 comments on commit bd59522

Please sign in to comment.