Skip to content

Commit 1cb6793

Browse files
committed
1.9.2 - Small fixes for tablet view
1 parent 2d0c0bc commit 1cb6793

File tree

4 files changed

+65
-23
lines changed

4 files changed

+65
-23
lines changed

dist/assets/css/main.css

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1288,7 +1288,6 @@ nav a.is-active .fa, nav a:active .fa {
12881288
}
12891289

12901290
#main-search input[type="text"]::-webkit-input-placeholder {
1291-
/* Chrome/Opera/Safari */
12921291
color: var(--c-white);
12931292
}
12941293

@@ -2108,7 +2107,7 @@ iframe {
21082107
}
21092108
}
21102109

2111-
@media screen and (max-width: 1199px) and (min-width: 992px) {
2110+
@media screen and (max-width: 1199px) and (min-width: 768px) {
21122111
.col-2, .col-3 {
21132112
width: 50%;
21142113
}
@@ -2171,19 +2170,35 @@ iframe {
21712170
}
21722171
}
21732172

2174-
@media screen and (max-width: 991px) {
2175-
body {
2176-
overflow: visible;
2173+
@media screen and (max-width: 991px) and (min-width: 768px) {
2174+
.btn {
2175+
padding: 5px 12px;
21772176
}
2178-
.contanier {
2179-
display: block;
2177+
.video-list-featured .video-item {
2178+
max-width: 100%;
21802179
}
2181-
.col-2, .col-3 {
2182-
width: 100%;
2183-
height: 100%;
2180+
.video-list-featured .video-item-settings-featured button + button {
2181+
margin-left: 6px;
21842182
}
21852183
}
21862184

2185+
/*
2186+
@media screen and (max-width: 991px) {
2187+
body {
2188+
overflow: visible;
2189+
}
2190+
.contanier {
2191+
display: block;
2192+
}
2193+
.col {
2194+
&-2,
2195+
&-3 {
2196+
width: 100%;
2197+
height: 100%;
2198+
}
2199+
2200+
}
2201+
}*/
21872202
.application #app-container > .container {
21882203
height: calc(100% - 26px);
21892204
}

scss/_responsive.scss

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
}
55
}
66

7-
@media screen and (max-width: 1199px) and (min-width: 992px) {
7+
@media screen and (max-width: 1199px) and (min-width: 768px) {
88
.col {
99
&-2,
1010
&-3 {
@@ -87,6 +87,18 @@
8787
}
8888
}
8989

90+
@media screen and (max-width: 991px) and (min-width: 768px) {
91+
.btn {
92+
padding: 5px 12px;
93+
}
94+
.video-list-featured .video-item {
95+
max-width: 100%;
96+
}
97+
.video-list-featured .video-item-settings-featured button + button {
98+
margin-left: 6px;
99+
}
100+
}
101+
/*
90102
@media screen and (max-width: 991px) {
91103
body {
92104
overflow: visible;
@@ -102,4 +114,4 @@
102114
}
103115
104116
}
105-
}
117+
}*/

scss/_search.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
&:focus {
2727
background-color: var(--c-black);
2828
}
29-
&::-webkit-input-placeholder { /* Chrome/Opera/Safari */
29+
&::-webkit-input-placeholder {
3030
color: var(--c-white);
3131
}
3232
}

src/assets/css/main.css

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1288,7 +1288,6 @@ nav a.is-active .fa, nav a:active .fa {
12881288
}
12891289

12901290
#main-search input[type="text"]::-webkit-input-placeholder {
1291-
/* Chrome/Opera/Safari */
12921291
color: var(--c-white);
12931292
}
12941293

@@ -2108,7 +2107,7 @@ iframe {
21082107
}
21092108
}
21102109

2111-
@media screen and (max-width: 1199px) and (min-width: 992px) {
2110+
@media screen and (max-width: 1199px) and (min-width: 768px) {
21122111
.col-2, .col-3 {
21132112
width: 50%;
21142113
}
@@ -2171,19 +2170,35 @@ iframe {
21712170
}
21722171
}
21732172

2174-
@media screen and (max-width: 991px) {
2175-
body {
2176-
overflow: visible;
2173+
@media screen and (max-width: 991px) and (min-width: 768px) {
2174+
.btn {
2175+
padding: 5px 12px;
21772176
}
2178-
.contanier {
2179-
display: block;
2177+
.video-list-featured .video-item {
2178+
max-width: 100%;
21802179
}
2181-
.col-2, .col-3 {
2182-
width: 100%;
2183-
height: 100%;
2180+
.video-list-featured .video-item-settings-featured button + button {
2181+
margin-left: 6px;
21842182
}
21852183
}
21862184

2185+
/*
2186+
@media screen and (max-width: 991px) {
2187+
body {
2188+
overflow: visible;
2189+
}
2190+
.contanier {
2191+
display: block;
2192+
}
2193+
.col {
2194+
&-2,
2195+
&-3 {
2196+
width: 100%;
2197+
height: 100%;
2198+
}
2199+
2200+
}
2201+
}*/
21872202
.application #app-container > .container {
21882203
height: calc(100% - 26px);
21892204
}

0 commit comments

Comments
 (0)