1
0
Fork 0

Use ::ng-deep instead of /deep/

This commit is contained in:
Chocobozzz 2019-07-24 16:12:35 +02:00
parent f36da21e40
commit 03652b3179
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
26 changed files with 44 additions and 44 deletions

View File

@ -1,6 +1,6 @@
@import '_variables';
@import '_mixins';
.update-button[disabled="true"] /deep/ .action-button {
.update-button[disabled="true"] ::ng-deep .action-button {
cursor: default !important;
}

View File

@ -7,7 +7,7 @@
margin-bottom: 30px;
p-selectButton {
/deep/ {
::ng-deep {
.ui-button-text {
font-size: 15px;
}

View File

@ -5,7 +5,7 @@
@include create-button;
}
/deep/ .action-button {
::ng-deep .action-button {
&.action-button-delete {
margin-right: 10px;
}

View File

@ -5,7 +5,7 @@
@include create-button;
}
/deep/ .action-button {
::ng-deep .action-button {
&.action-button-delete {
margin-right: 10px;
}
@ -17,7 +17,7 @@
.miniature-wrapper {
flex-grow: 1;
/deep/ .miniature {
::ng-deep .miniature {
display: flex;
.miniature-info {

View File

@ -70,7 +70,7 @@ button {
my-loader {
margin-bottom: 20px;
/deep/ .loader div {
::ng-deep .loader div {
border-color: var(--mainColor) transparent transparent transparent;
}

View File

@ -1,7 +1,7 @@
@import '_variables';
@import '_mixins';
/deep/ {
::ng-deep {
.popover-notifications.popover {
max-width: none;
@ -99,7 +99,7 @@
}
@media screen and (max-width: $mobile-view) {
/deep/ {
::ng-deep {
.popover-notifications.popover .popover-body {
width: 400px;
}

View File

@ -82,7 +82,7 @@ menu {
border: none;
}
/deep/ {
::ng-deep {
@include apply-svg-color(var(--menuForegroundColor));
}
}

View File

@ -115,7 +115,7 @@
my-video-thumbnail {
margin-right: 0 !important;
/deep/ .video-thumbnail {
::ng-deep .video-thumbnail {
width: 100%;
height: auto;

View File

@ -33,7 +33,7 @@
.more-icon {
width: 21px;
/deep/ {
::ng-deep {
@include apply-svg-color(var(--mainForegroundColor));
}
}

View File

@ -1,7 +1,7 @@
@import '_variables';
@import '_mixins';
my-small-loader /deep/ .root {
my-small-loader ::ng-deep .root {
display: inline-block;
margin: 0 3px 0 0;
width: 20px;

View File

@ -16,7 +16,7 @@
flex-grow: 1;
}
/deep/ {
::ng-deep {
.nav-link {
display: flex !important;
align-items: center;

View File

@ -1,5 +1,5 @@
p-inputmask {
/deep/ input {
::ng-deep input {
width: 80px;
font-size: 15px;

View File

@ -1,4 +1,4 @@
/deep/ svg {
::ng-deep svg {
width: inherit;
height: inherit;
}

View File

@ -11,12 +11,12 @@
}
}
/deep/ .dropdown-toggle::after {
::ng-deep .dropdown-toggle::after {
position: relative;
top: 2px;
}
/deep/ .dropdown-menu {
::ng-deep .dropdown-menu {
margin-top: 0 !important;
}

View File

@ -15,7 +15,7 @@
}
}
/deep/ {
::ng-deep {
.help-popover {
max-width: 300px;

View File

@ -61,7 +61,7 @@
padding-left: 1rem;
}
/deep/ form {
::ng-deep form {
padding: 0.25rem 1rem;
}

View File

@ -7,6 +7,6 @@
}
}
/deep/ .icon-playlist-add {
::ng-deep .icon-playlist-add {
left: 2px;
}

View File

@ -68,16 +68,16 @@ $more-margin-right: 10px;
width: $more-button-width;
height: 30px;
/deep/ .dropdown-root:not(.show) {
::ng-deep .dropdown-root:not(.show) {
opacity: 0;
}
/deep/ .playlist-dropdown.show + my-action-dropdown .dropdown-root {
::ng-deep .playlist-dropdown.show + my-action-dropdown .dropdown-root {
opacity: 1;
}
}
&:hover .video-actions /deep/ .dropdown-root {
&:hover .video-actions ::ng-deep .dropdown-root {
opacity: 1;
}
@ -90,7 +90,7 @@ $more-margin-right: 10px;
margin: 0;
top: -3px;
/deep/ .dropdown-root {
::ng-deep .dropdown-root {
opacity: 1 !important;
}
}

View File

@ -122,7 +122,7 @@ my-peertube-checkbox {
p-calendar {
display: block;
/deep/ {
::ng-deep {
input,
.ui-calendar {
width: 100%;
@ -135,7 +135,7 @@ p-calendar {
}
}
/deep/ {
::ng-deep {
.root-tabset > .nav {
margin-bottom: 15px;
}

View File

@ -25,7 +25,7 @@
p-progressBar {
flex-grow: 1;
/deep/ .ui-progressbar {
::ng-deep .ui-progressbar {
font-size: 15px !important;
height: 30px !important;
border-radius: 3px !important;
@ -45,7 +45,7 @@
}
&.processing {
/deep/ .ui-progressbar-label {
::ng-deep .ui-progressbar-label {
// Same color as background to hide "100%"
color: rgba(11, 204, 41, 0.16) !important;

View File

@ -5,7 +5,7 @@ $border-width: 3px;
$border-type: solid;
$border-color: #EAEAEA;
/deep/ .root-tabset.video-add-tabset {
::ng-deep .root-tabset.video-add-tabset {
&.hide-nav > .nav {
display: none !important;
}
@ -52,4 +52,4 @@ $border-color: #EAEAEA;
justify-content: center;
align-items: center;
}
}
}

View File

@ -50,7 +50,7 @@
@include peertube-word-wrap;
// Mentions
/deep/ a {
::ng-deep a {
&:not(.linkified-url) {
@include disable-default-a-behaviour;

View File

@ -37,7 +37,7 @@
}
my-video-playlist-element-miniature {
/deep/ {
::ng-deep {
.video {
.position {
margin-right: 0;

View File

@ -31,14 +31,14 @@ $player-factor: 1.7; // 16/9
width: 100%;
}
/deep/ .video-js {
::ng-deep .video-js {
$height: calc(100vh - #{$header-height} - #{$theater-bottom-space});
height: $height;
width: 100%;
}
my-video-watch-playlist /deep/ .playlist {
my-video-watch-playlist ::ng-deep .playlist {
@include playlist-below-player;
}
}
@ -81,7 +81,7 @@ $player-factor: 1.7; // 16/9
}
}
/deep/ .video-js {
::ng-deep .video-js {
width: getPlayerWidth(66vh);
height: 66vh;
@ -94,7 +94,7 @@ $player-factor: 1.7; // 16/9
@media screen and (max-width: 600px) {
.remote-server-down,
/deep/ .video-js {
::ng-deep .video-js {
width: 100vw;
height: getPlayerHeight(100vw)
}
@ -344,7 +344,7 @@ $player-factor: 1.7; // 16/9
}
}
/deep/ .other-videos {
::ng-deep .other-videos {
padding-left: 15px;
flex-basis: $other-videos-width;
min-width: $other-videos-width;
@ -456,7 +456,7 @@ my-video-comments {
flex-direction: column;
justify-content: center;
my-video-watch-playlist /deep/ .playlist {
my-video-watch-playlist ::ng-deep .playlist {
@include playlist-below-player;
}
}
@ -464,10 +464,10 @@ my-video-comments {
.video-bottom {
flex-direction: column;
/deep/ .other-videos {
::ng-deep .other-videos {
padding-left: 0 !important;
/deep/ .video-miniature {
::ng-deep .video-miniature {
flex-direction: row;
width: auto;
}
@ -492,7 +492,7 @@ my-video-comments {
}
}
/deep/ .other-videos .video-miniature {
::ng-deep .other-videos .video-miniature {
flex-direction: column;
}

View File

@ -95,7 +95,7 @@ $play-overlay-width: 18px;
}
@mixin thumbnail-size-component ($width, $height) {
/deep/ .video-thumbnail {
::ng-deep .video-thumbnail {
width: $width;
height: $height;
}
@ -110,7 +110,7 @@ $play-overlay-width: 18px;
@mixin video-miniature-small-screen {
text-align: center;
/deep/ .video-miniature {
::ng-deep .video-miniature {
padding-right: 0;
height: auto;
width: 100%;

View File

@ -54,7 +54,7 @@
}
@mixin apply-svg-color ($color) {
/deep/ svg {
::ng-deep svg {
path[fill="#000000"],
g[fill="#000000"],
rect[fill="#000000"],