From 42c3ffbca4e191f0d2226b81f1286e33be61d17d Mon Sep 17 00:00:00 2001 From: Ersun Warncke Date: Mon, 10 Dec 2018 15:56:06 -0400 Subject: [PATCH] Merge pull request #1218 from sharelatex/hb-publishers-hub-v2 Publishers hub v2 GitOrigin-RevId: 532d7afde471a39ec2e63a045d40769c7c37d06f --- .../stylesheets/_ol_style_includes.less | 1 + .../public/stylesheets/app/publisher-hub.less | 41 +++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 services/web/public/stylesheets/app/publisher-hub.less diff --git a/services/web/public/stylesheets/_ol_style_includes.less b/services/web/public/stylesheets/_ol_style_includes.less index fdffc14681..2505f3f836 100644 --- a/services/web/public/stylesheets/_ol_style_includes.less +++ b/services/web/public/stylesheets/_ol_style_includes.less @@ -5,5 +5,6 @@ @import "app/login-register.less"; @import "app/review-features-page.less"; @import "app/institution-hub.less"; +@import "app/publisher-hub.less"; @import "app/admin-hub.less"; @import "components/overbox.less"; \ No newline at end of file diff --git a/services/web/public/stylesheets/app/publisher-hub.less b/services/web/public/stylesheets/app/publisher-hub.less new file mode 100644 index 0000000000..77b097501f --- /dev/null +++ b/services/web/public/stylesheets/app/publisher-hub.less @@ -0,0 +1,41 @@ +#publisher-hub{ + #templates-container { + width: 100%; + tr{ + border: 1px solid @ol-blue-gray-0; + } + td{ + padding: 15px; + } + td:last-child { + text-align: right; + } + .title-cell{ + max-width: 300px; + } + .title-text{ + font-weight: bold; + } + .hub-big-number { + width: 60%; + padding-right: 10px; + padding-top: 10px; + text-align: right; + } + .hub-number-label, .since { + width: 35%; + float: right; + @media screen and (max-width: 940px) { + float: none; + } + } + .hub-long-big-number { + padding-right: 40px; + } + .created-on { + color: @gray-light; + font-style: italic; + font-size: 14px; + } + } +} \ No newline at end of file