Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.vscode
.prettierrc
.prettierignore
DEVTools/PSD
42 changes: 39 additions & 3 deletions Assets/css/GoldSaucer.css
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,20 @@ body.gs_page {
background-size: 32px 32px;
content: "";
}
.gs_sm_head.mahjong {
margin-left: 12px;
}
.gs_sm_head.mahjong:after {
content: "";
display: block;
width: 8px;
height: 8px;
border-radius: 4px;
background: #999999;
position: absolute;
left: -12px;
top: 6px;
}

.gs_icon {
padding-left: 36px;
Expand Down Expand Up @@ -925,15 +939,34 @@ table {

/* Маджонг */
.ga_mahjong {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
display: grid;
grid-auto-flow: column;
}

.gs_menu_wrapper {
width: 320px;
}

.gs_menu_nav {
position: fixed;
}
.gs_menu_nav_inner {
width: 305px;
max-height: 745px;
overflow-x: auto;
}
.gs_menu_nav_inner::-webkit-scrollbar {
width: 12px;
height: 10px;
background-color: transparent;
border: 4px solid transparent;
}
.gs_menu_nav_inner::-webkit-scrollbar-thumb {
border: 4px solid transparent;
background-clip: padding-box;
background-color: #585858;
border-radius: 15px;
}
.gs_menu_nav_haider {
position: relative;
color: #59514c;
Expand Down Expand Up @@ -997,6 +1030,9 @@ table {
color: #585858;
font-weight: bold;
}
.gs_menu_nav_anchor li a.active {
color: #e57e17;
}
.gs_menu_nav_sub {
display: grid;
grid-template-rows: 0fr;
Expand Down
2 changes: 1 addition & 1 deletion Assets/css/GoldSaucer.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Assets/css/GoldSaucer.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Assets/css/GoldSaucer.min.css.map

Large diffs are not rendered by default.

Loading