From 21194cc6859027ffd9747758c07d050f93d7e0d5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gr=C3=A9goire=20Aubert?= Date: Thu, 14 Jun 2018 16:02:56 +0200 Subject: [PATCH] SONAR-10672 Add !important to misc css classes --- .../src/main/js/app/styles/init/misc.css | 96 +++++++++---------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/server/sonar-web/src/main/js/app/styles/init/misc.css b/server/sonar-web/src/main/js/app/styles/init/misc.css index bcdeb28cd2f..4da47ab79f6 100644 --- a/server/sonar-web/src/main/js/app/styles/init/misc.css +++ b/server/sonar-web/src/main/js/app/styles/init/misc.css @@ -34,13 +34,13 @@ } .nowrap { - white-space: nowrap; + white-space: nowrap !important; } table.nowrap td, td.nowrap, th.nowrap { - white-space: nowrap; + white-space: nowrap !important; } .hidden { @@ -58,103 +58,103 @@ th.nowrap { } .spacer-left { - margin-left: 8px; + margin-left: 8px !important; } .spacer-right { - margin-right: 8px; + margin-right: 8px !important; } .spacer-bottom { - margin-bottom: 8px; + margin-bottom: 8px !important; } .spacer-top { - margin-top: 8px; + margin-top: 8px !important; } .big-spacer-left { - margin-left: 16px; + margin-left: 16px !important; } .big-spacer-right { - margin-right: 16px; + margin-right: 16px !important; } .big-spacer-bottom { - margin-bottom: 16px; + margin-bottom: 16px !important; } .big-spacer-top { - margin-top: 16px; + margin-top: 16px !important; } .huge-spacer-bottom { - margin-bottom: 40px; + margin-bottom: 40px !important; } .huge-spacer-top { - margin-top: 40px; + margin-top: 40px !important; } .huge-spacer-left { - margin-left: 40px; + margin-left: 40px !important; } .little-spacer-left { - margin-left: 4px; + margin-left: 4px !important; } .little-spacer-right { - margin-right: 4px; + margin-right: 4px !important; } .little-spacer-bottom { - margin-bottom: 4px; + margin-bottom: 4px !important; } .little-spacer-top { - margin-top: 4px; + margin-top: 4px !important; } td.little-spacer-left { - padding-left: 4px; + padding-left: 4px !important; } td.little-spacer-right { - padding-right: 4px; + padding-right: 4px !important; } td.spacer-left { - padding-left: 8px; + padding-left: 8px !important; } td.spacer-right { - padding-right: 8px; + padding-right: 8px !important; } td.spacer-bottom { - padding-bottom: 8px; + padding-bottom: 8px !important; } td.spacer-top { - padding-top: 8px; + padding-top: 8px !important; } td.big-spacer-left { - padding-left: 16px; + padding-left: 16px !important; } td.big-spacer-right { - padding-right: 16px; + padding-right: 16px !important; } td.big-spacer-bottom { - padding-bottom: 16px; + padding-bottom: 16px !important; } td.big-spacer-top { - padding-top: 16px; + padding-top: 16px !important; } .pull-left { @@ -186,70 +186,70 @@ td.big-spacer-top { } .overflow-hidden { - overflow: hidden; + overflow: hidden !important; } .max-width-100 { - max-width: 100%; + max-width: 100% !important; } .width-100 { - width: 100%; + width: 100% !important; } .width-80 { - width: 80%; + width: 80% !important; } .width-60 { - width: 60%; + width: 60% !important; } .width-55 { - width: 55%; + width: 55% !important; } .width-50 { - width: 50%; + width: 50% !important; } .width-40 { - width: 40%; + width: 40% !important; } .width-30 { - width: 30%; + width: 30% !important; } .width-25 { - width: 25%; + width: 25% !important; } .width-20 { - width: 20%; + width: 20% !important; } .width-15 { - width: 15%; + width: 15% !important; } .width-10 { - width: 10%; + width: 10% !important; } .abs-width-150 { - width: 150px; + width: 150px !important; } .abs-width-240 { - width: 240px; + width: 240px !important; } .abs-width-300 { - width: 300px; + width: 300px !important; } .abs-width-400 { - width: 400px; + width: 400px !important; } .justify { @@ -331,20 +331,20 @@ td.big-spacer-top { } .capitalize { - text-transform: capitalize; + text-transform: capitalize !important; } .cursor-not-allowed { - cursor: not-allowed; + cursor: not-allowed !important; } .no-select { - user-select: none; + user-select: none !important; } .no-outline, .no-outline:focus { - outline: none; + outline: none !important; } .bg-danger { -- 2.39.5