diff --git a/template/index.html b/template/index.html index eaa90c4..aa4ad2a 100644 --- a/template/index.html +++ b/template/index.html @@ -183,6 +183,9 @@ + + {% inline "x.svg" %} + New Feed diff --git a/template/static/images/x.svg b/template/static/images/x.svg new file mode 100644 index 0000000..7d5875c --- /dev/null +++ b/template/static/images/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/template/static/stylesheets/app.css b/template/static/stylesheets/app.css index d3f4ead..55fa62a 100644 --- a/template/static/stylesheets/app.css +++ b/template/static/stylesheets/app.css @@ -251,6 +251,7 @@ select.form-control:not([multiple]):not([size]) { margin-left: -.5rem; margin-right: -.5rem; border-radius: 3px; + user-select: none; cursor: default; } @@ -344,6 +345,10 @@ select.form-control:not([multiple]):not([size]) { outline: none; } +.selectgroup-label, .toolbar-item, .toolbar-search, .list-row { + transition: background-color .1s ease-out; +} + /* content */ .content {
New Feed