Skip to content
Snippets Groups Projects
notes.scss 791 B
Newer Older
$white: #fff;
chris's avatar
chris committed
$light-blue: #e4f0ff;
.notes-container {
  background-color: $white;
  bottom: 0;
  counter-reset: note-footer;
  height: 95px;
  left: 130px;
  max-height: 700px;
  min-height: 10px;
  position: fixed;
chris's avatar
chris committed
  width: 68.4%;
  z-index: 0;
chris's avatar
chris committed

  .resize-area {
    background-color: red;
    cursor: row-resize;
    height: 5px;
    position: absolute;
chris's avatar
chris committed
    top: -14px;
    width: 100%;
   }
chris's avatar
chris committed
   .sc-isolated-node,
   .sc-isolated-node.sm-default-style.sm-selected,
   .sc-isolated-node.sm-default-style.sm-co-selected {
     border: 4px solid $light-blue ;
     outline: none;
     padding: 0 0 8px 5px;
chris's avatar
chris committed

   .sc-isolated-node .sc-text-property::before {
    content: ''counter(note-footer)'. ';
    counter-increment: note-footer;
    left: -40px;
    position: absolute;
chris's avatar
chris committed
    }