Compare commits

...

1 Commits

Author SHA1 Message Date
Thomas MONCHICOURT f52f49ce9a Fix : css form parent probleme 2018-08-23 13:57:16 +02:00
4 changed files with 28 additions and 13 deletions
+12 -5
View File
@@ -14957,15 +14957,16 @@ textarea.materialize-textarea:focus:not([readonly]) {
box-shadow: 0 1px 0 0 #1689fb;
outline: none; }
form div.col label.error {
form[name=talent_profile] div.col label.error {
color: red;
position: absolute;
top: 20px;
left: 0; }
form div.col label.error.active {
form[name=talent_profile] div.col label.error.active {
color: red; }
div {
position: relative; }
form[name=talent_profile] .bg-bordered .col div {
position: relative; }
body {
font-size: 16px;
@@ -16094,11 +16095,17 @@ span.titleVideo {
text-decoration: none;
color: #000; }
#ad_show .profil-picture .responsive-img, #company_show .profil-picture .responsive-img, .dashboardCompanyWrapper .profil-picture .responsive-img {
.dashboardCompanyWrapper .profil-picture .responsive-img {
object-fit: cover;
width: auto;
height: auto; }
#ad_show .profil-picture .responsive-img, #company_show .profil-picture .responsive-img {
object-fit: cover;
width: auto;
height: auto;
max-height: 100%; }
/*tableaux*/
thead {
border-bottom: solid 2px #232323;
File diff suppressed because one or more lines are too long
@@ -76,7 +76,7 @@ textarea.materialize-textarea:focus:not([readonly]){
}
form div.col label.error{
form[name=talent_profile] div.col label.error{
color: red;
position: absolute;
top: 20px;
@@ -84,9 +84,8 @@ form div.col label.error{
&.active{
color: red;
}
@at-root {
div {
position: relative;
}
}
}
form[name=talent_profile] .bg-bordered .col div{
position: relative;
}
@@ -102,10 +102,19 @@
}
}
#ad_show,#company_show,.dashboardCompanyWrapper{
.dashboardCompanyWrapper{
.profil-picture .responsive-img {
object-fit: cover;
width: auto;
height: auto;
}
}
#ad_show,#company_show{
.profil-picture .responsive-img {
object-fit: cover;
width: auto;
height: auto;
max-height: 100%;
}
}