Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update sass files#207

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
Mzapeka merged 1 commit intomainfromui-fix
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes fromall 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
14 changes: 7 additions & 7 deletionsuncoder-os/package.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -50,19 +50,19 @@
"eslint-plugin-local-rules": "^3.0.2",
"eslint-plugin-react-hooks": "^4.6.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.1",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"node-polyfill-webpack-plugin": "^4.0.0",
"postcss": "^8.4.47",
"postcss": "^8.4.49",
"postcss-inline-base64": "^7.3.1",
"postcss-loader": "^8.1.1",
"sass": "^1.79.3",
"sass-loader": "^16.0.2",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "5.94.0",
"typescript": "^5.6.3",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1",
Expand Down
4 changes: 2 additions & 2 deletionsuncoder-os/src/assets/sass/fonts/index.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
@import./inter
@import./jetBrains
@use "./inter" as *
@use "./jetBrains" as *
28 changes: 16 additions & 12 deletionsuncoder-os/src/assets/sass/helpers/common.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
@use "variables" as variables
@use "mixins" as mixins
@use "helpers" as helpers

html,
body
background-color: $backgroundDarkBlue
background-color:variables.$backgroundDarkBlue

body
min-width: 375px
font-family: $inter
font-family:variables.$inter
font-size: 14px
font-weight: 400
color: $textDefault
+scrollbars
color:variables.$textDefault
+mixins.scrollbars

.inner
margin: 0 auto
padding: 0 32px
width: 100%
max-width: 1920px
+md
+helpers.md
padding: 0 12px
&--xl
max-width: 1650px
+xlMin
+helpers.xlMin
max-width: 1920px
&--md
max-width: 1110px
Expand All@@ -31,7 +35,7 @@ body
.simplebar-track
.simplebar-scrollbar
&::before
background-color: $backgroundSilverBlue
background-color:variables.$backgroundSilverBlue

.three-dots
max-width: 100%
Expand DownExpand Up@@ -65,7 +69,7 @@ body
left: 0
width: 100%
height: 1px
background-color: $backgroundWhite
background-color:variables.$backgroundWhite
transform: scaleX(0)
transition: transform .15s
&:hover
Expand All@@ -77,15 +81,15 @@ body
&--white
&,
&:hover
color: $textDefault
color:variables.$textDefault
&::after
background-color: $backgroundWhite
background-color:variables.$backgroundWhite
&--green
&,
&:hover
color: $textSuccess
color:variables.$textSuccess
&::after
background-color: $backgroundSuccess
background-color:variables.$backgroundSuccess
&--underline
&::after
transform: scaleX(1)
Expand Down
12 changes: 6 additions & 6 deletionsuncoder-os/src/assets/sass/helpers/index.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
@importmixins
@importreset
@importhelpers
@importmargin
@importvariables
@importcommon
@use "mixins" as *
@use "reset" as *
@use "helpers" as *
@use "margin" as *
@use "variables" as *
@use "common" as *
4 changes: 3 additions & 1 deletionuncoder-os/src/assets/sass/helpers/mixins.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
=scrollbars($size: 6px, $foreground-color: $backgroundSilverBlue, $background-color: transparent)
@use 'variables' as variables

=scrollbars($size: 6px, $foreground-color: variables.$backgroundSilverBlue, $background-color: transparent)
// Standard version (Firefox only for now)
scrollbar-color: $foreground-color $background-color
// For Chrome & Safari
Expand Down
4 changes: 2 additions & 2 deletionsuncoder-os/src/assets/sass/index.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
@importhelpers/index
@importfonts/index
@use "helpers/index" as *
@use "fonts/index" as *
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.additional-button
text-align: center
Expand Down
4 changes: 2 additions & 2 deletionsuncoder-os/src/components/Banner/Banner.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
@import../../assets/sass/helpers/variables
@import../../assets/sass/helpers/helpers
@use "../../assets/sass/helpers/variables" as *
@use "../../assets/sass/helpers/helpers" as *

.banner-grid
padding: 16px 24px
Expand Down
2 changes: 1 addition & 1 deletionuncoder-os/src/components/Buttons/Button/Button.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.button
padding: 0 10px
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.button--upper
&:disabled, &:disabled:hover
border-color: $borderDisabled
background-color: $iconDisabled
box-shadow: none
z-index: 1
z-index: 1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../../assets/sass/helpers/variables
@use "../../../../assets/sass/helpers/variables" as *

.dropdown-menu-list
&__item
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../../assets/sass/helpers/variables
@use "../../../../assets/sass/helpers/variables" as *

.dropdown-menu-checkbox-list
&__item
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../assets/sass/helpers/variables
@use "../../assets/sass/helpers/variables" as *

.error-boundary-page
min-height: calc(100vh - 236px)
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.checkbox-grid
position: relative
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.helper-text
font-size: 12px
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.label-grid
display: inline-flex
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.range-slider-grid
display: flex
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
@import../../../assets/sass/helpers/variables
@import../../../assets/sass/helpers/helpers
@use "../../../assets/sass/helpers/variables" as *
@use "../../../assets/sass/helpers/helpers" as *

.textarea-grid
&__input
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.one-ioc-element
display: flex
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../assets/sass/helpers/variables
@use "../../assets/sass/helpers/variables" as *

.iocs-stat
position: relative
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../assets/sass/helpers/variables
@use "../../assets/sass/helpers/variables" as *

.popper-window-grid
position: relative
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.source-selector-input
position: relative
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.source-selector-menu
margin: 4px 0 0
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../../assets/sass/helpers/variables
@use "../../../../assets/sass/helpers/variables" as *

.source-selector-menu-item
display: flex
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.select-source-sub-menu
padding: 16px 0
Expand Down
2 changes: 1 addition & 1 deletionuncoder-os/src/components/Snackbar/Snackbar.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../assets/sass/helpers/variables
@use "../../assets/sass/helpers/variables" as *

.snackbar-grid
position: fixed
Expand Down
2 changes: 1 addition & 1 deletionuncoder-os/src/components/Spinner/Spinner.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../assets/sass/helpers/variables
@use "../../assets/sass/helpers/variables" as *

.square-spinner
&::before
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
@import../../../assets/sass/helpers/variables
@import../../../assets/sass/helpers/aceEditorVariables
@use "../../../assets/sass/helpers/variables" as *
@use "../../../assets/sass/helpers/aceEditorVariables" as *

.ace_editor.ace-socprime
color: rgb(228, 230, 235)
Expand Down
4 changes: 2 additions & 2 deletionsuncoder-os/src/components/TextEditor/TextEditor.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
@import../../assets/sass/helpers/variables
@import../../assets/sass/helpers/mixins
@use "../../assets/sass/helpers/variables" as *
@use "../../assets/sass/helpers/mixins" as *

.ua-text-editor
&.ace-socprime
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.text-editor-header-grid
position: relative
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../../assets/sass/helpers/variables
@use "../../../assets/sass/helpers/variables" as *

.text-editor-subheader-grid
display: flex
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
@import "../../../assets/sass/fonts/jetBrains.sass"
@import../../../assets/sass/helpers/variables
@import../../../assets/sass/helpers/aceEditorVariables
@use "../../../assets/sass/fonts/jetBrains.sass" as *
@use "../../../assets/sass/helpers/variables" as *
@use "../../../assets/sass/helpers/aceEditorVariables" as *

.ace-socprime
background-color: $backgroundBlueLight
Expand Down
2 changes: 1 addition & 1 deletionuncoder-os/src/components/Tooltip/Tooltip.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
@import../../assets/sass/helpers/variables
@use "../../assets/sass/helpers/variables" as *

.tooltip-popup
border-radius: 4px
Expand Down
4 changes: 2 additions & 2 deletionsuncoder-os/src/pages/MainPage/Footer/Footer.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
@import../../../assets/sass/helpers/variables
@import../../../assets/sass/helpers/helpers
@use "../../../assets/sass/helpers/variables" as *
@use "../../../assets/sass/helpers/helpers" as *

.footer-grid
padding: 26px 0
Expand Down
4 changes: 2 additions & 2 deletionsuncoder-os/src/pages/MainPage/Header/Header.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
@import../../../assets/sass/helpers/variables
@import../../../assets/sass/helpers/helpers
@use "../../../assets/sass/helpers/variables" as *
@use "../../../assets/sass/helpers/helpers" as *

.header-grid
overflow: hidden
Expand Down
4 changes: 2 additions & 2 deletionsuncoder-os/src/pages/UncoderEditor/UncoderEditor.sass
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
@use"sass:color"
@import../../assets/sass/helpers/variables
@import../../assets/sass/helpers/mixins
@use"../../assets/sass/helpers/variables"as*
@use"../../assets/sass/helpers/mixins"as*

.main-grid
border-radius:4px
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp