diff options
| author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-03-16 23:22:40 -0400 |
|---|---|---|
| committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-03-16 23:22:40 -0400 |
| commit | 501e4acc3eaf619609311778ec5b9305f40384d7 (patch) | |
| tree | 8352dae0a60ff640289ff1ee03cd3f4334aaac53 /src/client/views/nodes/LinkBox.scss | |
| parent | 4d2fe1ce791a3b9e64c52b7dce9c1af28c2523c0 (diff) | |
| parent | f505dfa8234de4ea94304b104e801f72ea30ff39 (diff) | |
Merge branch 'master' of github-tsch-brown:browngraphicslab/Dash-Web into kvp
Diffstat (limited to 'src/client/views/nodes/LinkBox.scss')
| -rw-r--r-- | src/client/views/nodes/LinkBox.scss | 42 |
1 files changed, 34 insertions, 8 deletions
diff --git a/src/client/views/nodes/LinkBox.scss b/src/client/views/nodes/LinkBox.scss index 00e5ebb3d..5d5f782d2 100644 --- a/src/client/views/nodes/LinkBox.scss +++ b/src/client/views/nodes/LinkBox.scss @@ -1,13 +1,14 @@ +@import "../global_variables"; .link-container { width: 100%; - height: 30px; + height: 35px; display: flex; flex-direction: row; border-top: 0.5px solid #bababa; } .info-container { - width: 60%; + width: 55%; padding-top: 5px; padding-left: 5px; display: flex; @@ -23,17 +24,42 @@ } .button-container { - width: 40%; + width: 45%; display: flex; flex-direction: row; } .button { - height: 15px; - width: 15px; - margin: 8px 5px; + height: 20px; + width: 20px; + margin: 8px 4px; border-radius: 50%; - opacity: 0.6; + opacity: 0.9; pointer-events: auto; - background-color: #2B6091; + background-color: $dark-color; + color: $light-color; + text-transform: uppercase; + letter-spacing: 2px; + font-size: 60%; + transition: transform 0.2s; +} + +.button:hover { + background: $main-accent; + cursor: pointer; +} + +.fa-icon-view { + margin-left: 3px; + margin-top: 5px; +} + +.fa-icon-edit { + margin-left: 5px; + margin-top: 5px; +} + +.fa-icon-delete { + margin-left: 6px; + margin-top: 5px; }
\ No newline at end of file |
