├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png └── sourcebans-web-theme-fluent ├── box_admin_admins_search.tpl ├── box_admin_bans_search.tpl ├── box_admin_comms_search.tpl ├── box_admin_log_search.tpl ├── core ├── admin_tabs.tpl ├── footer.tpl ├── header.tpl ├── navbar.tpl ├── temp.html └── title.tpl ├── images ├── admin │ ├── error.png │ ├── help.png │ └── warning.png ├── favicon.ico ├── info.png └── warning.png ├── page_admin.tpl ├── page_admin_admins_add.tpl ├── page_admin_admins_list.tpl ├── page_admin_bans_add.tpl ├── page_admin_bans_email.tpl ├── page_admin_bans_groups.tpl ├── page_admin_bans_import.tpl ├── page_admin_bans_protests.tpl ├── page_admin_bans_protests_archiv.tpl ├── page_admin_bans_submissions.tpl ├── page_admin_bans_submissions_archiv.tpl ├── page_admin_comms_add.tpl ├── page_admin_edit_admins_details.tpl ├── page_admin_edit_admins_group.tpl ├── page_admin_edit_admins_servers.tpl ├── page_admin_edit_ban.tpl ├── page_admin_edit_comms.tpl ├── page_admin_edit_mod.tpl ├── page_admin_groups_add.tpl ├── page_admin_groups_list.tpl ├── page_admin_mods_add.tpl ├── page_admin_mods_list.tpl ├── page_admin_overrides.tpl ├── page_admin_servers_add.tpl ├── page_admin_servers_adminlist.tpl ├── page_admin_servers_list.tpl ├── page_admin_servers_rcon.tpl ├── page_admin_settings_features.tpl ├── page_admin_settings_logs.tpl ├── page_admin_settings_settings.tpl ├── page_admin_settings_themes.tpl ├── page_bans.tpl ├── page_blockit.tpl ├── page_comms.tpl ├── page_dashboard.tpl ├── page_kickit.tpl ├── page_login.tpl ├── page_lostpassword.tpl ├── page_protestban.tpl ├── page_servers.tpl ├── page_submitban.tpl ├── page_uploadfile.tpl ├── page_youraccount.tpl ├── screenshot.jpg ├── scripts ├── collapse.js ├── initial.js ├── jscolor.min.js ├── nav.js ├── sourcebans.js ├── tab.js └── theme.js ├── style ├── global.css ├── global.css.map ├── global.scss └── scss │ ├── __admin.scss │ ├── __dark.scss │ ├── __fix.scss │ ├── __footer.scss │ ├── __header.scss │ ├── __layout.scss │ ├── __nav.scss │ ├── __old.scss │ └── framework │ ├── _animations.scss │ ├── _buttons.scss │ ├── _error.scss │ ├── _fonts.scss │ ├── _inputs.scss │ ├── _messages.scss │ ├── _popup.scss │ └── _tables.scss ├── theme.conf.php └── updater.tpl /.gitignore: -------------------------------------------------------------------------------- 1 | /default -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "tabWidth": 2, 4 | "arrowParens": "avoid", 5 | "printWidth": 100, 6 | "trailingComma": "none", 7 | "useTabs": false 8 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |  2 | 3 | # (SourceBans++) Theme Fluent for SourceBans++ 4 | Fluent Design Theme Edition is a combination of Fluent Design styles Microsoft, iOS Design, Android Design and Google Design. We have also introduced many interesting features that are unique in standard themes. 5 | 6 | ## Requirements 🏷️ 7 | - [SourceBans++ 1.7.+](https://github.com/sbpp/sourcebans-pp/); 8 | - PHP 7.2+; 9 | 10 | ## Install 🧰 11 | 1. Download all files from repository or clone: 12 | ``` 13 | git clone https://github.com/aXenDeveloper/sourcebans-web-theme-fluent 14 | ``` 15 | 2. Move **sourcebans-web-theme-fluent** folder to Your Sourcebans -> **themes**; 16 | 3. Go to (Website): AdminCP -> Web Panel -> **Themes**; 17 | 4. Select theme **SourceBans++ Fluent Design Theme Edition**; 18 | 19 | ## Update 🛠️ 20 | Reupload all files from repository. 21 | 22 | ## Screenshots 📷 23 |  24 |  25 |  26 |  27 |  28 |  29 |  30 |  31 |  32 | -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/sourcebans-web-theme-fluent/5617d7c16a1d0d7dea2e40518a058d5a538d08c7/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/sourcebans-web-theme-fluent/5617d7c16a1d0d7dea2e40518a058d5a538d08c7/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/sourcebans-web-theme-fluent/5617d7c16a1d0d7dea2e40518a058d5a538d08c7/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/sourcebans-web-theme-fluent/5617d7c16a1d0d7dea2e40518a058d5a538d08c7/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/sourcebans-web-theme-fluent/5617d7c16a1d0d7dea2e40518a058d5a538d08c7/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/sourcebans-web-theme-fluent/5617d7c16a1d0d7dea2e40518a058d5a538d08c7/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/sourcebans-web-theme-fluent/5617d7c16a1d0d7dea2e40518a058d5a538d08c7/screenshots/7.png -------------------------------------------------------------------------------- /screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/sourcebans-web-theme-fluent/5617d7c16a1d0d7dea2e40518a058d5a538d08c7/screenshots/8.png -------------------------------------------------------------------------------- /screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aXenDeveloper/sourcebans-web-theme-fluent/5617d7c16a1d0d7dea2e40518a058d5a538d08c7/screenshots/9.png -------------------------------------------------------------------------------- /sourcebans-web-theme-fluent/box_admin_admins_search.tpl: -------------------------------------------------------------------------------- 1 |
8 | Advanced Search (Click) 9 | | 10 |
13 |
14 |
155 |
15 |
154 |
16 |
17 |
18 |
21 |
22 |
24 |
25 |
26 |
27 |
28 |
29 |
32 |
33 |
43 |
44 | {if $can_editadmin}
45 |
34 |
36 |
37 |
41 |
42 |
46 |
47 |
48 |
49 |
52 |
53 |
55 |
56 | {/if}
57 |
58 |
59 |
60 |
61 |
64 |
65 |
70 |
71 |
72 |
73 |
74 |
75 |
78 |
79 |
85 |
86 |
87 |
88 |
89 |
90 |
93 |
94 |
99 |
100 |
101 |
102 |
103 |
104 |
107 |
108 |
115 |
116 |
117 |
118 |
119 |
120 |
123 |
124 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
140 |
141 |
142 |
148 |
149 |
150 |
151 | {sb_button text="Search" onclick="search_admins();" class="ok" id="button button-primary flex:11" submit=false}
152 |
153 | |
156 |
Advanced Search (Click) | 8 |||||||||||||||||
11 |
12 |
58 |
|
59 |