Skip to content

Commit

Permalink
Moved previously scoped css styles to styles.css.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaboesch committed Aug 14, 2021
1 parent 3641e6d commit 96a6415
Show file tree
Hide file tree
Showing 3 changed files with 9,254 additions and 19 deletions.
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ Changes

### Unreleased

* 2021-08-14 - Moved previously scoped css styles to styles.css.
* 2021-08-14 - Updated path-parse to 1.0.7.
* 2021-08-14 - Updated postcss to 7.0.36.
* 2021-08-14 - Updated ws to 6.2.2.
* 2021-08-14 - Updated dns-packet to 1.3.4.
* 2021-08-14 - Updated browserslist to.
* 2021-08-14 - Updated lodash to 4.17.21.
* 2021-08-14 - Updated url-parse to 1.5.3.
* 2021-08-14 - Updated ssri to 6.0.2.
* 2021-08-14 - Updated y18n to 4.0.1.
* 2021-08-14 - Updated elliptic to 6.5.4.
* 2021-08-14 - Updated ini to 1.3.7.
* 2021-08-14 - Move Moodle Plugin CI from Travis CI to Github actions.

### Release 1.4.4
Expand Down
79 changes: 79 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,82 @@
/*rtl:remove*/
text-align: left;
}

#page-local-differentiator-index #local-differentiator-app .learninggoals-edit-list {
padding-top: 1rem;
}
#page-local-differentiator-index #local-differentiator-app .learninggoals-edit-add {
padding-top: 20px;
}
#page-local-differentiator-index #local-differentiator-app .learninggoals-edit-add-form > div > p > input {
margin-bottom: 5px;
font-size: 1rem;
}
#page-local-differentiator-index #local-differentiator-app input.thinking_skill[type="text"] {
border: 1.5px solid #009;
border-bottom: 2.5px solid #009;
}
#page-local-differentiator-index #local-differentiator-app input.thinking_skill[type="text"]:focus {
outline: none;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
--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);
border-color: #009;
transition: border linear .2s, box-shadow linear .2s;
}
#page-local-differentiator-index #local-differentiator-app input.content[type="text"] {
border: 1.5px solid #600;
border-bottom: 2.5px solid #600;
}
#page-local-differentiator-index #local-differentiator-app input.content[type="text"]:focus {
outline: none;
border: 1.5px solid #600;
border-bottom: 2.5px solid #600;
}
#page-local-differentiator-index #local-differentiator-app input.resource[type="text"] {
border: 1.5px solid #090;
border-bottom: 2.5px solid #090;
}
#page-local-differentiator-index #local-differentiator-app input.resource[type="text"]:focus {
outline: none;
border: 1.5px solid #090;
border-bottom: 2.5px solid #090;
}
#page-local-differentiator-index #local-differentiator-app input.product[type="text"] {
border: 1.5px solid #909;
border-bottom: 2.5px solid #909;
}
#page-local-differentiator-index #local-differentiator-app input.product[type="text"]:focus {
outline: none;
border: 1.5px solid #909;
border-bottom: 2.5px solid #909;
}
#page-local-differentiator-index #local-differentiator-app input.group[type="text"] {
border: 1.5px solid #990;
border-bottom: 2.5px solid #990;
}
#page-local-differentiator-index #local-differentiator-app input.group[type="text"]:focus {
outline: none;
border: 1.5px solid #990;
border-bottom: 2.5px solid #990;
}
#page-local-differentiator-index #local-differentiator-app input[type="text"] {
transition: border-color 250ms ease;
appearance: none;
border-radius: 4px;
border: 1.5px solid #e9ebeb;
border-bottom: 2.5px solid #e9ebeb;
padding: 0.15em 0.3em;
}
#page-local-differentiator-index #local-differentiator-app input[type="text"]:focus {
outline: none;
border-color: #999;
}
#page-local-differentiator-index #local-differentiator-app input[type="text"]::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: rgba(19, 40, 48, 0.54);
}
#page-local-differentiator-index #local-differentiator-app .fa-clipboard {
cursor: pointer;
margin-right: 0px;
}
Loading

0 comments on commit 96a6415

Please sign in to comment.