Commit 0fb26f15 authored by Mark Harding's avatar Mark Harding
Browse files

Epic/37 wire

parent d69d2bd0
Loading
Loading
Loading
Loading
+5 −0
Original line number Original line Diff line number Diff line
@@ -14973,6 +14973,11 @@
      "integrity": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==",
      "integrity": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==",
      "dev": true
      "dev": true
    },
    },
    "qrcodejs2": {
      "version": "0.0.2",
      "resolved": "https://registry.npmjs.org/qrcodejs2/-/qrcodejs2-0.0.2.tgz",
      "integrity": "sha1-Rlr+Xjnxn6zsuTLBH3oYYQkUauE="
    },
    "qs": {
    "qs": {
      "version": "6.5.2",
      "version": "6.5.2",
      "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
      "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
+1 −0
Original line number Original line Diff line number Diff line
@@ -43,6 +43,7 @@
    "material-design-lite": "~1.3.0",
    "material-design-lite": "~1.3.0",
    "medium-editor": "^5.23.2",
    "medium-editor": "^5.23.2",
    "plotly.js": "^1.47.4",
    "plotly.js": "^1.47.4",
    "qrcodejs2": "0.0.2",
    "rxjs": "~6.5.2",
    "rxjs": "~6.5.2",
    "socket.io-client": "^2.2.0",
    "socket.io-client": "^2.2.0",
    "textarea-caret": "^3.1.0",
    "textarea-caret": "^3.1.0",
+12 −0
Original line number Original line Diff line number Diff line
@@ -98,6 +98,18 @@ m-app {
    width: 300px;
    width: 300px;
  }
  }


  .m-page__goBack {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 8px;
    @include m-theme() {
      color: themed($m-grey-600);
    }
  }

  .m-page--sidebar--navigation--item {
  .m-page--sidebar--navigation--item {
    cursor: pointer;
    cursor: pointer;
    display: block;
    display: block;
+3 −0
Original line number Original line Diff line number Diff line
@@ -32,6 +32,7 @@ import {
import { Scheduler } from './components/scheduler/scheduler';
import { Scheduler } from './components/scheduler/scheduler';
import { Modal } from './components/modal/modal.component';
import { Modal } from './components/modal/modal.component';
import { MindsRichEmbed } from './components/rich-embed/rich-embed';
import { MindsRichEmbed } from './components/rich-embed/rich-embed';
import { QRCodeComponent } from './components/qr-code/qr-code.component';


import { MDL_DIRECTIVES } from './directives/material';
import { MDL_DIRECTIVES } from './directives/material';
import { AutoGrow } from './directives/autogrow';
import { AutoGrow } from './directives/autogrow';
@@ -136,6 +137,7 @@ import { ShareModalComponent } from '../modules/modals/share/share';
    MindsRichEmbed,
    MindsRichEmbed,
    TagcloudComponent,
    TagcloudComponent,
    DropdownComponent,
    DropdownComponent,
    QRCodeComponent,


    AutoGrow,
    AutoGrow,
    InlineAutoGrow,
    InlineAutoGrow,
@@ -220,6 +222,7 @@ import { ShareModalComponent } from '../modules/modals/share/share';
    MindsRichEmbed,
    MindsRichEmbed,
    TagcloudComponent,
    TagcloudComponent,
    DropdownComponent,
    DropdownComponent,
    QRCodeComponent,


    AutoGrow,
    AutoGrow,
    InlineAutoGrow,
    InlineAutoGrow,
+37 −0
Original line number Original line Diff line number Diff line
@@ -66,3 +66,40 @@ minds-button-thumbs-down {
    }
    }
  }
  }
}
}

.m-selector {
  position: relative;

  select {
    padding: 8px 16px;
    max-width: 100%;
    appearance: none;
    display: block;
    width: 100%;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    @include m-theme() {
      border: 1px solid themed($m-grey-100);
    }
  }

  &::before {
    content: '\25bc';
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 1px;
    padding-top: 0.7em;
    line-height: 1;
    right: 0;
    width: 2em;
    text-align: center;
    transform: scale(0.84, 0.42);
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=.84, M12=0, M21=0, M22=.42, SizingMethod='auto expand');
    @include m-theme() {
      color: themed($m-grey-500);
    }
  }
}
Loading