forked from n-air-app/n-air-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
42 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
@import "./inputs"; | ||
@import "./mixins"; | ||
@import "./tooltips"; | ||
|
||
@import "./twitchalertsCustom"; |
82 changes: 41 additions & 41 deletions
82
vendor/twitchalertsCustom.css → app/styles/twitchalertsCustom.less
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
@charset "UTF-8"; | ||
/* | ||
vendor分離前暫定対応 | ||
ニコニコ生放送最適化設定用style | ||
*/ | ||
|
||
/*checkbox disabled styleの変更*/ | ||
.section .input-container.disabled .input-wrapper .checkbox label:before { | ||
background-color: #91979A; | ||
border: #91979A; | ||
cursor: default; | ||
} | ||
.section .input-container.disabled .input-wrapper .checkbox label:after { | ||
background-color: #91979A; | ||
border: #91979A; | ||
color: #2F3340; | ||
cursor: default; | ||
} | ||
.section .input-container.disabled .input-wrapper .checkbox label > span { | ||
color: #91979A; | ||
} | ||
|
||
/*checkbox styleの変更*/ | ||
.checkbox label:before { | ||
border: 2px solid #91979A; | ||
} | ||
.checkbox input:checked~label:before { | ||
background-color: rgba(252,80,53,.2); | ||
} | ||
|
||
/* fontアイコンの追加に伴うunicode指定の上書き | ||
※vendorからcssスタイル参照していることで設定パネルの調整が複雑なので、twitchalerts.cssの参照を辞める予定 */ | ||
|
||
/*checkboxのアイコンのunicode指定変更*/ | ||
.checkbox input:checked~label:after { | ||
content: '\e905'; | ||
} | ||
/*select menu の下向き↓のunicode指定変更*/ | ||
.custom-select-trigger:after { | ||
content: '\e910'; | ||
} | ||
@charset "UTF-8"; | ||
/* | ||
vendor分離前暫定対応 | ||
ニコニコ生放送最適化設定用style | ||
*/ | ||
|
||
/*checkbox disabled styleの変更*/ | ||
.section .input-container.disabled .input-wrapper .checkbox label:before { | ||
background-color: #91979A; | ||
border: #91979A; | ||
cursor: default; | ||
} | ||
.section .input-container.disabled .input-wrapper .checkbox label:after { | ||
background-color: #91979A; | ||
border: #91979A; | ||
color: #2F3340; | ||
cursor: default; | ||
} | ||
.section .input-container.disabled .input-wrapper .checkbox label > span { | ||
color: #91979A; | ||
} | ||
|
||
/*checkbox styleの変更*/ | ||
.checkbox label:before { | ||
border: 2px solid #91979A; | ||
} | ||
.checkbox input:checked~label:before { | ||
background-color: rgba(252,80,53,.2); | ||
} | ||
|
||
/* fontアイコンの追加に伴うunicode指定の上書き | ||
※vendorからcssスタイル参照していることで設定パネルの調整が複雑なので、twitchalerts.cssの参照を辞める予定 */ | ||
|
||
/*checkboxのアイコンのunicode指定変更*/ | ||
.checkbox input:checked~label:after { | ||
content: @n-air--codepoint--check; | ||
} | ||
/*select menu の下向き↓のunicode指定変更*/ | ||
.custom-select-trigger:after { | ||
content: @n-air--codepoint--down-arrow; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters