Skip to content
Snippets Groups Projects
Commit 03adcdee authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Restructure some css

parent 11a9b4f6
No related branches found
No related tags found
No related merge requests found
/* Fix material icon vertical alignment when nested in various elements */
h1 .nopaque-icons, h2 .nopaque-icons, h3 .nopaque-icons, h4 .nopaque-icons,
.tab .nopaque-icons, .tab .material-icons {
line-height: inherit;
}
.parallax-container .parallax {
z-index: 0;
}
/* Fix material icon vertical alignment when nested in various elements */ /* Change navbar height bacause an extended and fixed navbar is used */
h1 .nopaque-icons, h2 .nopaque-icons, h3 .nopaque-icons, h4 .nopaque-icons, .navbar-fixed {
.tab .nopaque-icons, .tab .material-icons { height: 112px;
line-height: inherit;
}
main {
margin-top: 48px;
}
/*
* Force the footer to always stay on the bottom of the page regardless of how
* little content is on the page.
*/
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
table.ressource-list tr {
cursor: pointer;
}
.parallax-container .parallax {
z-index: 0;
} }
/* add custom bold class */ /* add custom bold class */
.bold { .bold {font-weight: bold;}
font-weight: bold;
}
/* Change placholdertext color of file uplaod fields */ /* Change placholdertext color of file uplaod fields */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ ::placeholder {
color: #9e9e9e; color: #9e9e9e;
opacity: 1; /* Firefox */ opacity: 1;
} }
/* preloader circle in the size of a button icon */ /* preloader circle in the size of a button icon */
...@@ -114,15 +84,6 @@ indicator will show up how the column is sorted right now.; */ ...@@ -114,15 +84,6 @@ indicator will show up how the column is sorted right now.; */
right:-5px; right:-5px;
} }
/* Sticy side elements */
.sticky {
position: -webkit-sticky;
position: sticky;
top: 80px;
padding: 50px;
z-index: 999; /* tmp fix */
}
.show-if-only-child:not(:only-child) { .show-if-only-child:not(:only-child) {
display: none !important; display: none !important;
} }
...@@ -145,6 +106,4 @@ indicator will show up how the column is sorted right now.; */ ...@@ -145,6 +106,4 @@ indicator will show up how the column is sorted right now.; */
.nopaque-icons.service-icon[data-service="nlp"]:empty:before {content: "G";} .nopaque-icons.service-icon[data-service="nlp"]:empty:before {content: "G";}
.nopaque-icons.service-icon[data-service="ocr"]:empty:before {content: "F";} .nopaque-icons.service-icon[data-service="ocr"]:empty:before {content: "F";}
.status-text[data-status]:before { .status-text[data-status]:empty:before {content: attr(data-status);}
content: attr(data-status);
}
/*
* Sticky Footer: https://materializecss.com/footer.html#sticky-footer
* A sticky footer always stays on the bottom of the page regardless of how
* little content is on the page. However, this footer will be pushed down if
* there is a lot of content, so it is different from a fixed footer.
*
* Note: This may cause issues in Internet Explorer which has weak support for
* flexbox.
*/
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
main {
flex: 1 0 auto;
}
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
<link href="{{ url_for('static', filename='css/sidenav_fixed.css') }}" media="screen,projection" rel="stylesheet"> <link href="{{ url_for('static', filename='css/sidenav_fixed.css') }}" media="screen,projection" rel="stylesheet">
{% endif %} {% endif %}
<link href="{{ url_for('static', filename='css/nopaque_icons.css') }}" media="screen,projection" rel="stylesheet"> <link href="{{ url_for('static', filename='css/nopaque_icons.css') }}" media="screen,projection" rel="stylesheet">
<link href="{{ url_for('static', filename='css/sticky_footer.css') }}" media="screen,projection" rel="stylesheet">
<link href="{{ url_for('static', filename='css/materialize_fixes.css') }}" media="screen,projection" rel="stylesheet">
<link href="{{ url_for('static', filename='css/nopaque.css') }}" media="screen,projection" rel="stylesheet"> <link href="{{ url_for('static', filename='css/nopaque.css') }}" media="screen,projection" rel="stylesheet">
<style> <style>
.primary-color {background-color: {{ colors['primary'] }} !important;} .primary-color {background-color: {{ colors['primary'] }} !important;}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment