X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fsass%2Fapplication.scss;h=f2d9f720126537e8466171cafea95cc20759a44b;hb=73e09f270660c78e50e86921a5ca6b356f760c7c;hp=33d7ce0a58e797c6c422b8f7c4e893bd013f0159;hpb=ecb4e35f4e6c7304cb274593c13cb47fd5078b75;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 33d7ce0a5..f2d9f7201 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss @@ -19,11 +19,23 @@ $FontPathSourceSansPro: '../../node_modules/npm-font-source-sans-pro/fonts'; } body { - font-family: 'Source Sans Pro', sans-serif; + font-family: $main-fonts; font-weight: $font-regular; color: #000; } +#incompatible-browser { + display: none; + text-align: center; + position: absolute; + width: 100%; + top: 45%; +} + +strong { + font-weight: $font-semibold; +} + input.readonly { /* Force blank on readonly inputs */ background-color: #fff !important; @@ -127,21 +139,9 @@ label { } // ngprime data table customizations -p-datatable { +p-table { font-size: 15px !important; - .ui-datatable-scrollable-header { - background-color: #fff !important; - } - - .ui-widget-content { - border: none !important; - } - - .ui-datatable-virtual-table { - border-top: none !important; - } - td { border: 1px solid #E5E5E5 !important; padding-left: 15px !important; @@ -153,23 +153,33 @@ p-datatable { tr { background-color: #fff !important; height: 46px; + } - &:hover { - background-color: #f0f0f0 !important; - } + .ui-table-tbody { + tr { + &:hover { + background-color: #f0f0f0 !important; + } - &:not(:hover) { - .action-cell * { - display: none !important; + &:not(:hover) { + .action-cell * { + display: none !important; + } } - } - &:first-child td { - border-top: none !important; + &:first-child td { + border-top: none !important; + } + + &:last-child td { + border-bottom: none !important; + } } - &:last-child td { - border-bottom: none !important; + .expander { + cursor: pointer; + position: relative; + top: 1px; } } @@ -191,7 +201,7 @@ p-datatable { } } - &.ui-state-active { + &.ui-state-highlight { background-color: #fff !important; .fa { @@ -299,34 +309,45 @@ p-datatable { } } -.nav { - font-size: 16px !important; - border: none !important; - - .nav-item .nav-link { - margin-right: 30px; - padding: 0; - border-radius: 3px; +tabset:not(.bootstrap) { + .nav { + font-size: 16px !important; border: none !important; - .tab-link { - display: flex !important; - align-items: center; - height: 30px !important; - padding: 0 15px; - } + .nav-item .nav-link { + margin-right: 30px; + padding: 0; + border-radius: 3px; + border: none !important; - &, & a { - color: #000 !important; - @include disable-default-a-behaviour; - } + .tab-link { + display: flex !important; + align-items: center; + min-height: 30px !important; + padding: 0 15px; + } + + &, & a { + color: #000 !important; + @include disable-default-a-behaviour; + } + + &.active, &:hover { + background-color: #F0F0F0; + } - &.active, &:hover { - background-color: #F0F0F0; + &.active { + font-weight: $font-semibold !important; + } } + } +} - &.active { - font-weight: $font-semibold !important; +tabset.bootstrap { + .nav-item .nav-link { + &, & a { + color: #000; + @include disable-default-a-behaviour; } } } @@ -360,10 +381,25 @@ table { } } +@media screen and (max-width: 900px) { + .main-col { + &, &.expanded { + .margin-content { + margin-left: 50px; + margin-right: 50px; + } + + .sub-menu { + padding-left: 50px; + } + } + } +} + // On small screen, menu is absolute -@media screen and (max-width: 800px) { +@media screen and (max-width: 600px) { .title-menu-left { - width: 150px !important; + width: 100% !important; position: absolute !important; z-index: 10000; } @@ -373,12 +409,12 @@ table { &, &.expanded { .margin-content { - margin-left: 10px; - margin-right: 10px; + margin-left: 15px; + margin-right: 15px; } .sub-menu { - padding-left: 10px; + padding-left: 15px; margin-bottom: 10px; } @@ -387,4 +423,8 @@ table { } } } + + bs-dropdown-container { + z-index: 10000; + } }