Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

frozen right column header and data misalign #810

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
package
  • Loading branch information
Keye Myria authored and Keye Myria committed Jun 12, 2017
commit 920b7e16eceb64e819383404f69983f2a7429f57
231 changes: 231 additions & 0 deletions release/assets/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,231 @@
body {
font-family: 'RobotoDraft', 'Roboto', 'Helvetica Neue, Helvetica, Arial', sans-serif;
text-align: left;
font-style: normal;
font-weight: 300;
font-size: 1.4rem;
line-height: 2rem;
letter-spacing: 0.01rem;
color: #212121;
background-color: #f5f5f5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
margin: 0;
position: relative;
}

.ngx-datatable,
.info {
text-align: left;
width: 75%;
margin: 0 auto;
}

.info {
box-sizing: border-box;
padding: 0 1em;
border: solid 1px #ccc;
background: white;
font-size: .8em;
margin-bottom: 1em;
}

.ngx-datatable.scroll-vertical {
height: 70vh;
}

.selected-column {
background: #FFF;
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
-moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px 0 rgba(0, 0, 0, 0.24);
}

.group {
position: relative;
margin-bottom: 45px;
}

input[type=text] {
font-size: 18px;
padding: 10px 10px 10px 5px;
display: block;
background: transparent;
width: 100%;
border: none;
border-bottom: 1px solid #5264AE;
}

input:focus {
outline: none;
}

a {
color: grey;
text-decoration: none;
}

.expander-btn {
margin-top:8px;
display:block;
}

h3 {
background: #1f89ff;
margin: 0 0 30px 0;
color: #FFF;
text-align: left;
padding: 10px;
overflow: hidden;
height: 32px;
}

h3 a {
color: #ccc;
}

h3 small {
margin-left: 10px;
font-size: .8rem;
}

.fullscreen {
position: absolute !important;
height: auto !important;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
}

.selection-cell .datatable-body-cell.active{
background: #0829e0 !important;
color: #FFF !important;
}

.selected-column {
float: right;
width: 20%;
margin-right: 20px;
text-align: left;
}

.selected-column h4 {
text-align: center;
margin: 10px 0 0 0;
padding: 0;
}

ul, li {
padding:0;
margin:0;
list-style:none;
}

ul {
margin: 10px;
}

li {
padding: 3px 5px;
}

nav {
background: #FFF;
z-index: 99;
top:0;
left:0;
height: 100%;
width: 200px;
position: absolute;
min-height: 1700px;
font-size:14px;
box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12);
}

nav ul {
margin: 0 8px !important;
}

nav li {
padding: 0;
}

nav h3 {
font-size: 14px;
margin:0 0 10px 0;
}

nav h4 {
margin: 7px 0 0 0;
}

nav h4 a {
color:#000;
}

content {
margin-left: 200px;
min-height: 100vh;
display:block;
position: relative;
padding-bottom: 20px;
}

content h3 {
padding-left: 35px;
}

.main-ul {
margin-left: 15px !important;
display: block;
}

.github-button-wrap {
position: absolute;
top: 10px;
right: 10px;
}

nav h3 small{
font-size: .7rem;
display: inline-block;
margin-left: 0;
}

select {
width: 100%;
height: 30px;
margin: 5px 0;
}

.age-is-ten {
background: #ffc91f;
}

.is-gender {
background: blue;
color: white;
}

.is-female {
background: pink;
}

.dark {
background: #181B24;
}

.dark nav {
background: #232837;
}

.dark nav a {
color:#fff;
}

.dark nav h4 {
color: #72809b;
}
Loading