Skip to content

Commit

Permalink
chore(css) lint
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Dec 15, 2021
1 parent 49f4e5b commit 2743f78
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions css/config.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
line-height: 1.5;
color: #555;
border: 1px solid #ccc;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 7.5%);
-moz-box-shadow: inset 0 1px 1px rgb(0 0 0 / 7.5%);
box-shadow: inset 0 1px 1px rgb(0 0 0 / 7.5%);
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
-moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
Expand All @@ -44,9 +44,9 @@
.config .form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 1px rgba(102, 175, 233, 0.6);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 1px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 1px rgba(102, 175, 233, 0.6);
-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 7.5%), 0 0 1px rgb(102 175 233 / 60%);
-moz-box-shadow: inset 0 1px 1px rgb(0 0 0 / 7.5%), 0 0 1px rgb(102 175 233 / 60%);
box-shadow: inset 0 1px 1px rgb(0 0 0 / 7.5%), 0 0 1px rgb(102 175 233 / 60%);
}

.config .form-control:focus:invalid:focus {
Expand Down
6 changes: 3 additions & 3 deletions css/query.css
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
}

.file::before, .file-link::before {
color: rgba(26, 224, 124, 0.56);
color: rgb(26 224 124 / 56%);
content: '\e80d';
}

Expand All @@ -140,7 +140,7 @@

/* меняем иконки на шрифтовые */
.mini-icon {
color : rgba(246, 224, 124, 0.56);
color : rgb(246 224 124 / 56%);
font : 16px 'Fontello';
background-image: none;
padding : 1%;
Expand Down Expand Up @@ -168,7 +168,7 @@
}

.archive::before, .archive-link {
color: rgba(26, 224, 124, 0.56);
color: rgb(26 224 124 / 56%);
content: '\e81d';
}

Expand Down
12 changes: 6 additions & 6 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:root {
--color: rgba(49, 123, 249);
--color-transparent: rgba(49, 123, 249, 0.4);
--color: rgb(49 123 249);
--color-transparent: rgb(49 123 249 / 40%);
}

html {
Expand Down Expand Up @@ -29,7 +29,7 @@ body, pre, code {

.fm, .keyspanel {
cursor : default;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight-color: rgb(0 0 0 / 0%);
-webkit-user-select : none;
-moz-user-select : none;
-ms-user-select : none;
Expand Down Expand Up @@ -76,7 +76,7 @@ body, pre, code {
.error::before {
font-family : 'Fontello';
font-size : 14px;
color : rgb(222, 41, 41);
color : rgb(222 41 41);
cursor : default;
content : '\e800';
}
Expand Down Expand Up @@ -172,7 +172,7 @@ a:hover, a:active {
}

.selected-file, .selected-file .name > a {
color: rgb(254, 159, 224);
color: rgb(254 159 224);
}

.panel-right {
Expand All @@ -190,7 +190,7 @@ a:hover, a:active {
}

.selected-panel {
border-color: rgba(254, 159, 224, .40);
border-color: rgb(254 159 224 / 40%);
}

.keyspanel {
Expand Down
2 changes: 1 addition & 1 deletion css/view.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

.view-overlay {
display : block;
background : rgba(255, 255, 255, 0.1);
background : rgb(255 255 255 / 10%);
}

.media, video {
Expand Down

0 comments on commit 2743f78

Please sign in to comment.