diff --git a/services/web/app/coffee/models/Institution.coffee b/services/web/app/coffee/models/Institution.coffee index 6af1d43470..1fa97a98e1 100644 --- a/services/web/app/coffee/models/Institution.coffee +++ b/services/web/app/coffee/models/Institution.coffee @@ -16,6 +16,7 @@ InstitutionSchema.method 'fetchV1Data', (callback = (error, institution)->) -> this.name = parsedBody?.name this.countryCode = parsedBody?.country_code this.departments = parsedBody?.departments + this.portalSlug = parsedBody?.portal_slug callback(null, this) mongoose.model 'Institution', InstitutionSchema diff --git a/services/web/public/stylesheets/_ol_style_includes.less b/services/web/public/stylesheets/_ol_style_includes.less index 9ada6bc8bf..fdffc14681 100644 --- a/services/web/public/stylesheets/_ol_style_includes.less +++ b/services/web/public/stylesheets/_ol_style_includes.less @@ -4,3 +4,6 @@ @import "app/templates-v2.less"; @import "app/login-register.less"; @import "app/review-features-page.less"; +@import "app/institution-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/admin-hub.less b/services/web/public/stylesheets/app/admin-hub.less new file mode 100644 index 0000000000..dbb6359a64 --- /dev/null +++ b/services/web/public/stylesheets/app/admin-hub.less @@ -0,0 +1,95 @@ +.circle(@size, @background_color) { + display: inline-block; + background-color: @background_color; + border-radius: 50%; + width: @size; + height: @size; + text-align: center; + padding-top: @size/6.4; + img { + height: @size - @size/3.2; + } +} + +.hub-header { + h2 { + display: inline-block; + } + a { + color: @ol-dark-green; + } + i { + font-size: 30px; + } + .dropdown { + margin-right: 10px; + } +} +.admin-item { + position: relative; + margin-bottom: 60px; + .section-title { + text-transform: capitalize; + } + .alert-danger { + color: @ol-red; + } +} +.hidden-chart-section { + display: none; +} +.hub-circle { + .circle(160px, @accent-color-secondary); + padding-top: 50px; + color: white; +} +.hub-circle-number { + display: block; + font-size: 36px; + font-weight: 900; + line-height: 1; +} +.hub-big-number { + float: left; + font-size: 32px; + font-weight: 900; + line-height: 40px; + color: @accent-color-secondary; +} +.hub-big-number, .hub-number-label { + display: block; +} +.hub-metric-link { + position: absolute; + top: 9px; + right: 0; + a { + color: @accent-color-secondary; + } + i { + margin-right: 5px; + } +} +.custom-donut-container { + svg { + max-width: 700px; + margin: auto; + } + .chart-center-text { + font-family: @font-family-sans-serif; + font-size: 40px; + font-weight: bold; + fill: @accent-color-secondary; + text-anchor: middle; + } + + .nv-legend-text { + font-family: @font-family-sans-serif; + font-size: 14px; + } +} +.chart-no-center-text { + .chart-center-text { + display: none; + } +} diff --git a/services/web/public/stylesheets/app/institution-hub.less b/services/web/public/stylesheets/app/institution-hub.less new file mode 100644 index 0000000000..b9165c015f --- /dev/null +++ b/services/web/public/stylesheets/app/institution-hub.less @@ -0,0 +1,35 @@ +#institution-hub { + .section_header { + .dropdown { + margin-right: 10px; + } + } + + #usage { + .recent-activity { + .overbox { + font-size: 16px; + } + .hub-big-number, .hub-number-label, .worked-on { + display: block; + width: 50%; + } + .hub-big-number { + padding-right: 10px; + text-align: right; + } + .hub-number-label, .worked-on { + float: right; + } + .hub-number-label { + &:nth-child(odd) { + margin-top: 16px; + } + } + .worked-on { + color: @text-small-color; + font-style: italic; + } + } + } +} diff --git a/services/web/public/stylesheets/components/nvd3_override.less b/services/web/public/stylesheets/components/nvd3_override.less index 2a84f27ddc..929a99e9db 100644 --- a/services/web/public/stylesheets/components/nvd3_override.less +++ b/services/web/public/stylesheets/components/nvd3_override.less @@ -12,5 +12,5 @@ } svg.nvd3-iddle { - @extend svg.nvd3-svg; + &:extend(svg.nvd3-svg); } diff --git a/services/web/public/stylesheets/components/overbox.less b/services/web/public/stylesheets/components/overbox.less new file mode 100644 index 0000000000..623eaec638 --- /dev/null +++ b/services/web/public/stylesheets/components/overbox.less @@ -0,0 +1,11 @@ +/* overbox: white box with shadow borders */ +.overbox { + margin: 0; + padding: 40px 20px; + background: @white; + border: 1px solid @gray-light; + + &.overbox-small { + padding: 10px; + } +}