Skip to content

Commit 483762f

Browse files
Update css from last night
Fix scrolling on table with articles Signed-off-by: Dominik <163560221+Dominik-developer@users.noreply.github.com>
1 parent 61a3474 commit 483762f

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

admin/CSS/window.css

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ article.window {
2222
/** window content */
2323
.main .content {
2424
padding: 20px;
25-
background-color: #f2f2f2; /* Kolor tła wewnętrznej sekcji */
25+
/*background-color: #f2f2f2;*/ /* Kolor tła wewnętrznej sekcji */
2626
border-radius: 8px;
2727
box-sizing: border-box;
2828
margin-top: 10px;
@@ -35,7 +35,6 @@ article.window {
3535

3636
/* === GLOBAL STYLES ==== */
3737
.content {
38-
/*background-color: #f2f2f2;*/
3938
padding: 20px;
4039
width: 100%;
4140
height: auto;
@@ -67,7 +66,6 @@ input[type=checkbox] {
6766

6867
button,
6968
input[type=submit] {
70-
/*background-color: red;*/
7169
background-color: #4070f4;
7270
color: white;
7371
padding: 12px 20px;
@@ -80,7 +78,6 @@ input[type=submit] {
8078

8179
button:hover,
8280
input[type=submit]:hover {
83-
/*background-color: rgb(235,14,14);*/
8481
background-color: #2359ee;
8582
}
8683

@@ -156,9 +153,10 @@ input[type=file] {
156153
}
157154

158155
#table-container-inner{
159-
overflow-x: scroll;
156+
overflow-y: auto;
157+
overflow-x: auto;
160158
white-space: nowrap; /* To ensure the content stays on one line for scrolling */
161-
width: 100%; /* możesz dostosować */
159+
width: 100%;
162160
max-width: 2000px;
163161
}
164162

0 commit comments

Comments
 (0)