From a531aeb8b3f9b5569b9cfa56c9472df488e17ef7 Mon Sep 17 00:00:00 2001 From: Grant Nestor Date: Thu, 9 Mar 2017 12:10:35 -0800 Subject: [PATCH] Add modal styles --- notebook/static/notebook/less/modal.less | 19 +++++++++++++++++++ notebook/static/notebook/less/style.less | 1 + 2 files changed, 20 insertions(+) create mode 100644 notebook/static/notebook/less/modal.less diff --git a/notebook/static/notebook/less/modal.less b/notebook/static/notebook/less/modal.less new file mode 100644 index 000000000..1ecd3afbc --- /dev/null +++ b/notebook/static/notebook/less/modal.less @@ -0,0 +1,19 @@ +.modal .modal-body { + + .rename-message { + + } + .move-path { + display: flex; + flex-direction: row; + justify-content: space; + align-items: center; + + .server-root { + padding-right: 20px; + } + .path-input { + flex: 1; + } + } +} diff --git a/notebook/static/notebook/less/style.less b/notebook/static/notebook/less/style.less index 54b246c24..e02343a82 100644 --- a/notebook/static/notebook/less/style.less +++ b/notebook/static/notebook/less/style.less @@ -10,6 +10,7 @@ @import "tagbar.less"; @import "completer.less"; @import "kernelselector.less"; +@import "modal.less"; @import "menubar.less"; @import "notificationarea.less"; @import "notificationwidget.less";