mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
MDL-55168 css: fix various errors detected by stylelint
Ignored properties, invalid propertiies, duplicates, invalid selectors.. Detected by stylelint rules: http://stylelint.io/user-guide/rules/declaration-block-no-ignored-properties http://stylelint.io/user-guide/rules/selector-type-no-unknown http://stylelint.io/user-guide/rules/declaration-block-no-duplicate-properties http://stylelint.io/user-guide/rules/max-line-length http://stylelint.io/user-guide/rules/no-browser-hacks
This commit is contained in:
parent
99fe296eb2
commit
693652b78d
@ -32,7 +32,6 @@
|
||||
.block_course_overview .welcome_message {
|
||||
float: left;
|
||||
padding: 10px;
|
||||
vertical-align: middle;
|
||||
border-collapse: separate;
|
||||
clear: none;
|
||||
}
|
||||
|
@ -56,7 +56,7 @@
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.path-grade-report-singleview itemnav.previtem {
|
||||
.path-grade-report-singleview .itemnav.previtem {
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
@ -45,7 +45,6 @@
|
||||
user-select: none;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-o-user-select: none;
|
||||
}
|
||||
|
||||
.assignfeedback_editpdf_widget .pageheader {
|
||||
|
@ -10,20 +10,16 @@
|
||||
border-width: thin;
|
||||
border-color: #779;
|
||||
background-color: white;
|
||||
display: table-cell;
|
||||
display: inline-table;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.pictureframe {
|
||||
padding: 5px;
|
||||
display: table-cell;
|
||||
display: inline-table;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.picturediv {
|
||||
display: inline;
|
||||
display: inline-block;
|
||||
max-width: 150px;
|
||||
max-height: 200px;
|
||||
}
|
||||
|
@ -118,7 +118,7 @@
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.mod-data-default-template searchcontrols {
|
||||
.mod-data-default-template .searchcontrols {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
@ -265,8 +265,8 @@
|
||||
}
|
||||
|
||||
#page-mod-scorm-player #scormpage div.yui3-g-r {
|
||||
*letter-spacing: normal;
|
||||
*word-spacing: -0.43em;
|
||||
letter-spacing: normal;
|
||||
word-spacing: -0.43em;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -284,7 +284,6 @@ a.wiki_newentry:visited {
|
||||
|
||||
a.wiki_edit_section {
|
||||
font-size: 0.6em;
|
||||
vertical-align: top;
|
||||
position: relative;
|
||||
float: right;
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
body {
|
||||
font-family: Verdana, Helvetica, Sans-Serif;
|
||||
font-family: verdana, helvetica, sans-serif;
|
||||
background-color: #fff;
|
||||
color: #000;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user