aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/themes/pmahomme/scss/printview.scss
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-07-27 10:05:23 +0200
commit5bf66662a9bdd62c5bccab15e607cd95cfb8fcab (patch)
tree39a1a4629749056191c05dfd899f931701b7acf3 /srcs/phpmyadmin/themes/pmahomme/scss/printview.scss
parent5afd237bbd22028b85532b8c0b3fcead49a00764 (diff)
downloadft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.tar.gz
ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.tar.bz2
ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.zip
Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my famillyHEADmaster
Diffstat (limited to 'srcs/phpmyadmin/themes/pmahomme/scss/printview.scss')
-rw-r--r--srcs/phpmyadmin/themes/pmahomme/scss/printview.scss166
1 files changed, 0 insertions, 166 deletions
diff --git a/srcs/phpmyadmin/themes/pmahomme/scss/printview.scss b/srcs/phpmyadmin/themes/pmahomme/scss/printview.scss
deleted file mode 100644
index 44031b7..0000000
--- a/srcs/phpmyadmin/themes/pmahomme/scss/printview.scss
+++ /dev/null
@@ -1,166 +0,0 @@
-@media print {
- #back_button_print_view,
- #print_button_print_view {
- display: none;
- }
-}
-
-// For removing element from Print View
-.print_ignore {
- display: none;
-}
-
-.nowrap {
- white-space: nowrap;
-}
-
-.hide {
- display: none;
-}
-
-// Standard CSS
-body,
-table,
-th,
-td {
- color: #000;
- background-color: #fff;
- font-size: 12px;
-}
-
-// To remove link text decoration
-a:link {
- color: #000;
- text-decoration: none;
-}
-
-// To remove any image borders
-img {
- border: 0;
-}
-
-// Table specific
-table,
-th,
-td {
- border: 0.1em solid #000;
- background-color: #fff;
-}
-
-table {
- border-collapse: collapse;
- border-spacing: 0.2em;
-}
-
-thead {
- border-collapse: collapse;
- border-spacing: 0.2em;
- border: 0.1em solid #000;
- font-weight: 900;
-}
-
-th,
-td {
- padding: 0.2em;
-}
-
-thead th {
- font-weight: bold;
- background-color: #e5e5e5;
- border: 0.1em solid #000;
-}
-
-th.vtop,
-td.vtop {
- vertical-align: top;
-}
-
-th.vbottom,
-td.vbottom {
- vertical-align: bottom;
-}
-
-// Common Elements not to be included
-// Hide Navigation and Top Menu bar
-// Hide console
-// Hide Navigation items (like Goto Top)
-// Hide the Create Table form
-// Hide the Page Settings Modal box
-// Hide footer, Demo notice, errors div
-// Hide the #selflink div
-#pma_navigation,
-#floating_menubar,
-#pma_console_container,
-#page_nav_icons,
-#create_table_form_minimal,
-#page_settings_modal,
-#pma_footer,
-#pma_demo,
-#pma_errors,
-#selflink {
- display: none;
-}
-
-// Position the main content
-#page_content {
- position: absolute;
- left: 0;
- top: 0;
- width: 95%;
- float: none;
-}
-
-// Specific Class for overriding while Print
-.print {
- background-color: #000;
-}
-
-// For the Success message div
-div.success {
- background-color: #fff;
-}
-
-.sqlOuter {
- color: black;
- background-color: #000;
-}
-
-// For hiding 'Open a New phpMyAdmin Window' button
-// Hide extra menu on tbl_structure.php
-.ic_window-new,
-.ic_s_cog,
-.sticky_columns tr,
-#structure-action-links,
-#addColumns,
-#topmenu2,
-.cDrop,
-.cEdit,
-.cList,
-.cCpy,
-.cPointer {
- display: none;
-}
-
-table tbody:first-of-type tr {
- // odd items 1,3,5,7...
- &:nth-child(odd) {
- background: #fff;
-
- th {
- background: #fff;
- }
- }
-
- // even items 2,4,6,8...
- &:nth-child(even) {
- background: #dfdfdf;
-
- th {
- background: #dfdfdf;
- }
- }
-}
-
-.column_attribute {
- font-size: 100%;
-}