diff options
| author | Andrew Kim <andrewdkim@users.noreply.github.com> | 2019-08-19 00:27:40 -0400 | 
|---|---|---|
| committer | Andrew Kim <andrewdkim@users.noreply.github.com> | 2019-08-19 00:27:40 -0400 | 
| commit | a4bfacd9f494df6698d12d408d736e878c1189eb (patch) | |
| tree | b3af89bc30eaf48fd983711c00cd4c28eb662bbc /src/client/views/nodes/WebBox.scss | |
| parent | 1b7e8873ead3cc15349bd4c9e669f3b1edcbbc2b (diff) | |
| parent | b037aa89fb564812f880994453ce002054a0ad82 (diff) | |
merge from master
Diffstat (limited to 'src/client/views/nodes/WebBox.scss')
| -rw-r--r-- | src/client/views/nodes/WebBox.scss | 62 | 
1 files changed, 54 insertions, 8 deletions
| diff --git a/src/client/views/nodes/WebBox.scss b/src/client/views/nodes/WebBox.scss index eb09b0693..07774263c 100644 --- a/src/client/views/nodes/WebBox.scss +++ b/src/client/views/nodes/WebBox.scss @@ -1,16 +1,18 @@ - -.webBox-cont, .webBox-cont-interactive{ +.webBox-cont, +.webBox-cont-interactive {      padding: 0vw;      position: absolute;      top: 0; -    left:0; +    left: 0;      width: 100%;      height: 100%;      overflow: auto; -    pointer-events: none ; +    pointer-events: none;  } +  .webBox-cont-interactive {      pointer-events: all; +      span {          user-select: text !important;      } @@ -18,8 +20,8 @@  #webBox-htmlSpan {      position: absolute; -    top:0; -    left:0; +    top: 0; +    left: 0;  }  .webBox-overlay { @@ -29,8 +31,52 @@  }  .webBox-button { -    padding : 0vw; +    padding: 0vw;      border: none; -    width : 100%; +    width: 100%; +    height: 100%; +} + +.webView-urlEditor { +    position: relative; +    opacity: 0.9; +    z-index: 9001; +    transition: top .5s; +    background: lightgrey; +    padding: 10px; + + +    .urlEditor { +        display: grid; +        grid-template-columns: 1fr auto; +        padding-bottom: 10px; +        overflow: hidden; + +        .editorBase { +            display: flex; + +            .editor-collapse { +                transition: all .5s, opacity 0.3s; +                position: absolute; +                width: 40px; +                transform-origin: top left; +            } +        } + +        button:hover { +            transform: scale(1); +        } +    } +} + +.webpage-urlInput { +    padding: 12px 10px 11px 10px; +    border: 0px; +    color: grey; +    letter-spacing: 2px; +    outline-color: black; +    background: rgb(238, 238, 238); +    width: 100%; +    margin-right: 10px;      height: 100%;  }
\ No newline at end of file | 
