Css table striped
Author: q | 2025-04-24
Overriding bootstrap table-striped CSS. 10. Bootstrap table striped: how can I change the stripe step? 2. CSS div table styling. 5. Print bootstrap striped table. 0. Bootstrap An HTML table and a Foundation CSS table both are the same structurally. Tables stripes mean that the rows in the table have alternate white and grey background colors which appear like stripes. Foundation CSS Tables Classes: striped: This class helps to enable stripe styling of our table which is by default present in a Foundation CSS table.
table-striped - Bootstrap CSS class
Collection of free Bootstrap table code examples: responsive, with pagination, with search, with filter, scrollable, sortable, striped. Upgrade of April 2020 collection. 17 new items. CSS Tables Tailwind Tables Made with HTML / CSS / JS About a code Table V19 A free sales table template with avatars that works on mobile and desktop devices without a hitch. You can select or deselect rows or pick them individually. The free snippet also features hover effect. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css, jquery.js, popper.js Bootstrap version: 4.3.1 Author rokr March 9, 2021 Made with HTML / CSS / JS About a code Table V18 A convenient and all-around free responsive dark table template that works for an assortment of different projects. It also has a hover effect function to highlight the row and a checkmark with an option select/deselect all. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css, jquery.js, popper.js Bootstrap version: 4.3.1 Author rokr March 9, 2021 Made with HTML / CSS / JS About a code Table V16 If black is your favorite color, then this free dark table template will help you save time and effort since you can embed it quickly. The layout is 100% responsive and features a hover effect that highlights the entire row. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css, jquery.js, popper.js Bootstrap version: 4.3.1 Author BBBootstrap Team February, 2021 Made with HTML / CSS / JS About a code Bootstrap 5 Table with Search and Checkboxes Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css Bootstrap version: 5.0.0 Author rokr January 26, 2021 Made with HTML / CSS / JS About a code Table V6 This neat and free shopping cart table template is perfect for all eCommerce websites,
Pure CSS - Striped Tables - i2tutorials
Moderator: Moderators fifonik Posts: 162 Joined: Fri Dec 02, 2016 3:52 am Location: Brisbane, AU Search for webmon I've implemented search functionality for webmon page.Happy to share the code if someone interested in.Unfortunately, I cannot supply proper PR as do not know how to organise everything correctly for gargoyle.In my case I've just inserted everything in single www/webmon.sh:- One line in html (added input)- A few JS functions at the end of the html in script-sectionP.S. Should I just post it here? Lantis Moderator Posts: 7037 Joined: Mon Jan 05, 2015 5:33 am Location: Australia Re: Search for webmon Post by Lantis » Mon Jul 08, 2024 8:02 am Sure, post it here. If it's all in the html I will probably rework it but that's fine. for the latest releasesPlease be respectful when posting. I do this in my free time on a volunteer basis. fifonik Posts: 162 Joined: Fri Dec 02, 2016 3:52 am Location: Brisbane, AU Re: Search for webmon Post by fifonik » Mon Jul 08, 2024 8:18 am www/webmon.shCode: Select all + ... // to be added at the end of the file before resetData(); function webmonSearch(input, container){ const table = container.getElementsByTagName('table')[0]; if (!table) return; // The 'table-striped' used to highlight odd/even rows using CSS // Unfortunately, this cannot be used if some rows are hidden // So removing the class and later assign odd/even classes directly to the rows table.classList.remove('table-striped'); const tbody = table.getElementsByTagName('tbody')[0]; if (!tbody) return; const s = input.value.trim(); if (s == '') { for (let i = 0, k = tbody.rows.length; i 0) value = value.slice(proto + 3).toUpperCase(); row.dataset.value = value; } if(host.indexOf(S) >= 0 || value.indexOf(S) >= 0){ row.style.display = ''; // 'table-row' can also be used row.className = visibleIndex++ % 2 ? 'even' : 'odd'; } else { row.style.display = 'none'; } } } } function webmonSearchInit(inputId, containerId){ const input = document.getElementById(inputId); if(!input) return; const container = document.getElementById(containerId); if(!container){ // No container for the table exists -- hide filter input input.style.display='none'; return; } // todo@ add debounce input.addEventListener('keyup', evt => webmonSearch(input, container), false); const observer = new MutationObserver((mutationList, observer) => { if(input.value.trim() == '') return; for (const mutation of mutationList) { if (mutation.type === 'childList' && mutation.addedNodes) { // New table added, re-filtering webmonSearch(input, container); break; } } }); observer.observe(container, { childList: true }); } webmonSearchInit('domain_search', 'webmon_domain_table_container'); Lantis Moderator Posts: 7037 Joined: Mon Jan 05, 2015 5:33 am Location:Materialize CSS Striped Table - GeeksforGeeks
On this standalone porch with a modern striped rug.Continue to 15 of 60 below Opt for Preppy Porch Decor It All Started With Paint Bring a classic preppy feel to your screen porch with navy-and-white-striped upholstery, a basket filled with hydrangeas, and a tablecloth. It All Started With Paint finished off this screen porch design with quirky seahorse pillows.Continue to 16 of 60 below Continue to 17 of 60 below Create an Indoor-Outdoor Feel Emily A. Clark Create a traditional living room feel on your screen porch for a more formal feel. Emily A. Clark hung a large mirror on the wall and decorated with a stylish table lamp and blue-and-white textiles.Continue to 18 of 60 below Continue to 19 of 60 below Continue to 20 of 60 below Set Up a Porch Bar Our Southern Home Set up a console table that can be used as a makeshift bar or lemonade stand while entertaining on your screen porch. Blogger Christy Little of Our Southern Home painted a console table navy and covered it in a ruffled runner for a homey effect on this brick screen porch.Continue to 21 of 60 below Don't Forget Traditional Touches Perlmutter & Freiwald Interior Design There's no need to purchase separate decor for your screen porch; anything you'd normally display in your living room is fair game. Perlmutter & Freiwald Interior Design included a coffee table book collection in this sunroom outfitted with a glass roof and wraparound glass-paned doors that could work just. Overriding bootstrap table-striped CSS. 10. Bootstrap table striped: how can I change the stripe step? 2. CSS div table styling. 5. Print bootstrap striped table. 0. Bootstrap An HTML table and a Foundation CSS table both are the same structurally. Tables stripes mean that the rows in the table have alternate white and grey background colors which appear like stripes. Foundation CSS Tables Classes: striped: This class helps to enable stripe styling of our table which is by default present in a Foundation CSS table.Zebra Striped Table with CSS - CodePen
Bootstrap table - 4 by HubSpot (@hubspot) on CodePen.Bootstrap Table with Striped RowsLet’s say you want to change the style of the table body section, not the head section. Using the .table-striped modifier class, you can add color to every other row within the section. This will give it a “zebra-striping” effect.To create this table, simply add “table-striped" after the .table class.See the Pen Bootstrap table - 5 by HubSpot (@hubspot) on CodePen.Bootstrap Table with Hoverable RowsNow let’s say you’d like the style of the rows to change only when a visitor hovers over them. Using the .table-hover modifier class, you can enable a hover state on table rows within a section.To create this table, add table-hover after the .table class.See the Pen Bootstrap table - 5 by HubSpot (@hubspot) on CodePen.Bootstrap Table with Colored RowsWith Bootstrap, you can also change the color of rows or cells using contextual classes. You can apply the following classes to elements (rows) or elements (individual cells):table-primarytable-secondarytable-successtable-dangertable-warningtable-infotable-lighttable-darkI can apply any of the above classes to different rows to make my table look something like this:See the Pen Bootstrap table - 6 by HubSpot (@hubspot) on CodePen.Bordered Bootstrap TableIf you’d like to have borders on all sides of the table rather than just the horizontal dividers, then you can use the .table-bordered modifier class. Add this class after the .table class.See the Pen Bootstrap table - 7 by HubSpot (@hubspot) on CodePen.If you’d like to remove all borders, then you can use the .table-borderless modifier class.Adding Bootstrap Tables to Your SiteTables can help organize large amounts of data on your site in a way that’s easy to read and digest for your visitors. Any of the table examples described above can be added and customized to your unique Bootstrap site. You’ll just need some familiarityFoundation CSS Tables Stripes - GeeksforGeeks
Holiday Bed • Holiday Couch • Holiday End Table • Holiday String Lights • Holiday String Lights Fence • Holiday Table • Holiday Throne • Holiday Tree • Holiday Wardrobe • Holiday Wreath • Hourglass Paper Lantern • Lantern Festival Selling Portal • Long Bells • Ornament Streamers • Paper Lantern Strand • Poisoned Apples • Polka Dot Stocking • Potion Jar • Red Green Stocking • Red Stocking • Rooster Lantern • Silly Chicken Lantern • Small Vial • Snowflake Rug • Snowy Stocking • Stack of Presents • Stone Mortar and Pestle • Striped Blue Stocking • Striped Red Stocking • Striped Yellow Stocking • Surfboard Display • Tapered Paper Lantern • Thin Bell • Voodoo Doll • Wall Mounted Surfboard • Witch Bed • Witch Chair • Witch Couch • Witch End Table • Witch Lamp • Witch Rug • Witch Table • Witch Wardrobe • Year of the Dog Plush • Year of the Dragon Plush • Year of the Horse Plush • Year of the Monkey Plush • Year of the Ox Plush • Year of the Pig Plush • Year of the Rabbit Plush • Year of the Ram Plush • Year of the Rat Plush • Year of the Rooster Plush • Year of the Snake Plush • Year of the Tiger Plush • Yule LogsVasesBlue Elven Vase • Clay Pot • Earthy Elven Vase • Gold Snake Vase • Green Elven Vase • Red Elven Vase • Red Rose Vase • VioletCSS3 Zebra Striping A Table - CSS-Tricks
June 12, 2019 About a code Bootstrap Table Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, jquery.js, bootstrap.js Bootstrap version: 4.1.3 Author Ondrej May 9, 2019 Made with HTML / CSS / JS About a code Bootstrap Table with a Fixed Header Build a bootstrap table with a fixed header and scrollable body using Bootstrap 4. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, font-awesome.css, jquery.js, bootstrap.js Bootstrap version: 4.3.1 Author Ondrej May 8, 2019 Made with HTML / CSS / JS About a code Bootstrap Pricing Table Easily create a classy pricing table in Bootstrap 4. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, font-awesome.css, bootstrap.js, jquery.js Bootstrap version: 4.3.1 Author BBBootstrap Team March, 2019 Made with HTML / CSS / JS About a code Bootstrap 4 Team Points Table Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: no Dependencies: bootstrap.css, bootstrap.js, font-awesome.css, jquery.js Bootstrap version: 4.0.0 Author BBBootstrap Team March, 2019 Made with HTML / CSS / JS About a code Bootstrap 4 Basic Table with Card Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: no Dependencies: bootstrap.css Bootstrap version: 4.0.0 Author Aigars April 21, 2018 Made with HTML / CSS / JS About a code Table With Vertical & Horizontal Highlight HTML5 & CSS3 based table example that can be used as a template for your website. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css, animate.css, select2.css, perfect-scrollbar.css, jquery.js, popper.js, select2.js Bootstrap version: 4.0.0 Author Aigars April 21, 2018 Made with HTML / CSS / JS About a code Responsive Table V1 HTML5 & CSS3 based table example that can be used as a template for your website. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css, animate.css, select2.css, perfect-scrollbar.css, jquery.js, popper.js, select2.jsHow to Create a Zebra Striped Table with CSS
Rotating parity N (left-to-right) with data restart. raid6_nc RAID6 N continue. Rotating parity N (left-to-right) with data continuation. raid10 Striped mirrors. This is the default value for the --type argument of the lvcreate command if you specify the -m argument along with the number of stripes that is greater than 1. Striping of mirror sets. raid0/raid0_meta Striping. RAID0 spreads logical volume data across multiple data subvolumes in units of stripe size. This is used to increase performance. Logical volume data is lost if any of the data subvolumes fail. 9.3. Parameters for creating a RAID0 You can create a RAID0 striped logical volume using the lvcreate --type raid0[meta] --stripes _Stripes --stripesize StripeSize VolumeGroup [PhysicalVolumePath] command. The following table describes different parameters, which you can use while creating a RAID0 striped logical volume. Table 9.2. Parameters for creating a RAID0 striped logical volumeParameterDescription --type raid0[_meta] Specifying raid0 creates a RAID0 volume without metadata volumes. Specifying raid0_meta creates a RAID0 volume with metadata volumes. Since RAID0 is non-resilient, it does not store any mirrored data blocks as RAID1/10 or calculate and store any parity blocks as RAID4/5/6 do. Hence, it does not need metadata volumes to keep state about resynchronization progress of mirrored or parity blocks. Metadata volumes become mandatory on a conversion from RAID0 to RAID4/5/6/10. Specifying raid0_meta preallocates those metadata volumes to prevent a respective allocation failure. --stripes Stripes Specifies the number of devices to spread the logical volume across. --stripesize StripeSize Specifies the size of each stripe in kilobytes.. Overriding bootstrap table-striped CSS. 10. Bootstrap table striped: how can I change the stripe step? 2. CSS div table styling. 5. Print bootstrap striped table. 0. Bootstrap
Zebra Stripe HTML Tables with CSS - WPShout
Swarup Kumar Kuila June 25, 2020 About a code Pricing Table Design Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, font-awesome.css Author Ishaan Sheikh January 29, 2020 Made with HTML / CSS (SCSS) About a code Pricing Table Design Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css Author francescomansi September 19, 2019 About a code Tailwind CSS Pricing Panel Responsive Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: tailwind.css Author Assia Chemlali August 5, 2019 About a code Gradient Pricing Table Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: - Author Aris Kuckovic April 27, 2019 Made with HTML / CSS (SCSS) About a code Pricing Tables Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: - Author Florin Pop February 25, 2019 About the code Pricing Plans Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: - Author Paulo Ribeiro October 27, 2018 Made with HTML / CSS (SCSS) About the code Pricing Table Pure CSS pricing table. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: - Author Mitch Steimel June 29, 2018 Made with HTML / CSS (SCSS) About a code Product Cards Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: no Dependencies: font-awesome.css Author Jamal Hassonui February 14, 2018 About the code Pricing Table UI Simple pricing table. Author Chouaib Blgn September 16, 2017 About the code Pricing Table UI Design Pricing table with animation. Author Travis Williamson August 15, 2017 About the code Pricing Table Pricing table comparing 3 different plans for a mystical computing company. Demo Image: HTML And CSS Pricing TableHTML And CSS Pricing TableBootstrap pricing table.Made by Sahar Ali RazaDecember 10, 2016 Demo Image: Adaptive Pricing TableAdaptive Pricing TableHTML/CSS adaptive pricing table.Made by AlexJuly 31, 2016 Demo GIF: Price TablePrice TablePrice table with HTML and CSS.Made by Matthias MartinApril 7, 2016 Author Jamie Coulter January 28, 2016 Made with HTML (Haml) / CSS (SCSS) About a code CSS Price Cards Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: no Dependencies: - Demo Image: Material Pricing TablesMaterial Pricing TablesMaterial responsiveBootstrap CSS class: table-striped - shuffle.dev
Table Website TemplatesThe Table Website Templates are based on CSS table templates and are a popular element in web design. The best free HTML and CSS table templates will suit the best way possible due to the excellent functionality and table template easy configuration. Bootstrap templates include a landing page with shopping cart functionality, search by parameters. Pricing tables free templates load in less than two seconds. CSS table templates are quickly indexed by search engines and can easily be adapted to your own business. Nicepage offers you responsive website templates with text editors, simple css3 responsive table templates, company WordPress themes with responsive web design, lightweight clean design responsive table template design examples, premium table Bootstrap templates with CSS table design, table modern HTML CSS layouts with hover effect, etc. Free HTML templates with data tables, pricing tables, and fixed header table elements allow you to quickly and efficiently develop a unique design for all table template pages of the site. Responsive flip pricing table templates offer a concise design with modern tools. Pure CSS responsive tables layout is suitable for both ordinary stores and for the current delivery service. Table free WordPress themes, that are downloaded by millions of people. The authors offer PSD files as a package. Thematic design css3 pricing table requires minimal intervention and configuration due to its minimalism and the absence of a large number of specific characteristic details.A minimalistic responsive website in a single style will help make a responsive table for any purpose. Download CSS pricing table template, then customize with it professional images. Free html5 admin templates have optimization for SEO. Popular categories of business website templates have a modern, colorful and responsive design. You can design templates with WordPress plugins and even do web development of your template. The WordPress theme has a fixed header and allows you to create an "advanced" login form. Free Bootstrap templates, like CSS responsive table layouts, allow you to create all kinds of categories of goods and services. Responsive table V1 template offers page layouts that you can experiment with design. Editor of Bootstrap and css3 pricing table templates allows you to change basic theme parameters and see these changes instantly. A perfect colorful bootstrap table template with pre-made pricing tables perfectly perceived by search engines. You can download the table design template, then get a modern pricing table template that uses page builder, and create your website. A responsive template table with a fixed table template header is good to use for promotions, limited-time offers. With HTML CSS, design website style and integrate with social media. Bootstrap templates, especially table templates, have a quick setup color palette. A free CSS table template is left with Elementor's drag-and-drop page builder, which simplifies the process and allows everyone to create exactly the website they visualized. A huge advantage of this theme is the presence of the Yoast SEO plugin, which is designed to help you manage your SEO options. You can customize unique and unlimited. Overriding bootstrap table-striped CSS. 10. Bootstrap table striped: how can I change the stripe step? 2. CSS div table styling. 5. Print bootstrap striped table. 0. Bootstrap An HTML table and a Foundation CSS table both are the same structurally. Tables stripes mean that the rows in the table have alternate white and grey background colors which appear like stripes. Foundation CSS Tables Classes: striped: This class helps to enable stripe styling of our table which is by default present in a Foundation CSS table.html - Striped table in CSS - Stack Overflow
Dependencies: bootstrap.css, bootstrap.js, jquery.js Bootstrap version: 4.1.1 Made with HTML / CSS / JS About a code Bootstrap Simple & Clean Pricing table Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, bootstrap.js, jquery.js Bootstrap version: 4.1.1 Made with HTML / CSS / JS About a code Bootstrap 4 Table Bootstrap 4 responsive tables with Material checkboxes and pagination. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, bootstrap.js, jquery.js Bootstrap version: 4.0.0 Made with HTML / CSS / JS About a code Bootstrap Table Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, bootstrap.js, jquery.js, bootstrap-material-design.css, font-awesome.css Bootstrap version: 4.0.0 Made with HTML / CSS / JS About a code Best Pricing Table Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, bootstrap.js, jquery.js, font-awesome.css Bootstrap version: 4.0.0 Made with HTML / CSS / JS About a code Responsive Price Table Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, bootstrap.js, jquery.js Bootstrap version: 3.3.0 Made with HTML / CSS / JS About a code Table with Progress Bar Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, bootstrap.js, jquery.js Bootstrap version: 3.3.0 Made with HTML / CSS / JS About a code Easy Table Filter Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, bootstrap.js, jquery.js Bootstrap version: 3.3.0 Made with HTML / CSS / JS About a code Simple Pricing Tables Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: bootstrap.css, bootstrap.js, jquery.js Bootstrap version: 3.1.0Comments
Collection of free Bootstrap table code examples: responsive, with pagination, with search, with filter, scrollable, sortable, striped. Upgrade of April 2020 collection. 17 new items. CSS Tables Tailwind Tables Made with HTML / CSS / JS About a code Table V19 A free sales table template with avatars that works on mobile and desktop devices without a hitch. You can select or deselect rows or pick them individually. The free snippet also features hover effect. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css, jquery.js, popper.js Bootstrap version: 4.3.1 Author rokr March 9, 2021 Made with HTML / CSS / JS About a code Table V18 A convenient and all-around free responsive dark table template that works for an assortment of different projects. It also has a hover effect function to highlight the row and a checkmark with an option select/deselect all. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css, jquery.js, popper.js Bootstrap version: 4.3.1 Author rokr March 9, 2021 Made with HTML / CSS / JS About a code Table V16 If black is your favorite color, then this free dark table template will help you save time and effort since you can embed it quickly. The layout is 100% responsive and features a hover effect that highlights the entire row. Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css, jquery.js, popper.js Bootstrap version: 4.3.1 Author BBBootstrap Team February, 2021 Made with HTML / CSS / JS About a code Bootstrap 5 Table with Search and Checkboxes Compatible browsers: Chrome, Edge, Firefox, Opera, Safari Responsive: yes Dependencies: font-awesome.css Bootstrap version: 5.0.0 Author rokr January 26, 2021 Made with HTML / CSS / JS About a code Table V6 This neat and free shopping cart table template is perfect for all eCommerce websites,
2025-04-10Moderator: Moderators fifonik Posts: 162 Joined: Fri Dec 02, 2016 3:52 am Location: Brisbane, AU Search for webmon I've implemented search functionality for webmon page.Happy to share the code if someone interested in.Unfortunately, I cannot supply proper PR as do not know how to organise everything correctly for gargoyle.In my case I've just inserted everything in single www/webmon.sh:- One line in html (added input)- A few JS functions at the end of the html in script-sectionP.S. Should I just post it here? Lantis Moderator Posts: 7037 Joined: Mon Jan 05, 2015 5:33 am Location: Australia Re: Search for webmon Post by Lantis » Mon Jul 08, 2024 8:02 am Sure, post it here. If it's all in the html I will probably rework it but that's fine. for the latest releasesPlease be respectful when posting. I do this in my free time on a volunteer basis. fifonik Posts: 162 Joined: Fri Dec 02, 2016 3:52 am Location: Brisbane, AU Re: Search for webmon Post by fifonik » Mon Jul 08, 2024 8:18 am www/webmon.shCode: Select all + ... // to be added at the end of the file before resetData(); function webmonSearch(input, container){ const table = container.getElementsByTagName('table')[0]; if (!table) return; // The 'table-striped' used to highlight odd/even rows using CSS // Unfortunately, this cannot be used if some rows are hidden // So removing the class and later assign odd/even classes directly to the rows table.classList.remove('table-striped'); const tbody = table.getElementsByTagName('tbody')[0]; if (!tbody) return; const s = input.value.trim(); if (s == '') { for (let i = 0, k = tbody.rows.length; i 0) value = value.slice(proto + 3).toUpperCase(); row.dataset.value = value; } if(host.indexOf(S) >= 0 || value.indexOf(S) >= 0){ row.style.display = ''; // 'table-row' can also be used row.className = visibleIndex++ % 2 ? 'even' : 'odd'; } else { row.style.display = 'none'; } } } } function webmonSearchInit(inputId, containerId){ const input = document.getElementById(inputId); if(!input) return; const container = document.getElementById(containerId); if(!container){ // No container for the table exists -- hide filter input input.style.display='none'; return; } // todo@ add debounce input.addEventListener('keyup', evt => webmonSearch(input, container), false); const observer = new MutationObserver((mutationList, observer) => { if(input.value.trim() == '') return; for (const mutation of mutationList) { if (mutation.type === 'childList' && mutation.addedNodes) { // New table added, re-filtering webmonSearch(input, container); break; } } }); observer.observe(container, { childList: true }); } webmonSearchInit('domain_search', 'webmon_domain_table_container'); Lantis Moderator Posts: 7037 Joined: Mon Jan 05, 2015 5:33 am Location:
2025-04-01Bootstrap table - 4 by HubSpot (@hubspot) on CodePen.Bootstrap Table with Striped RowsLet’s say you want to change the style of the table body section, not the head section. Using the .table-striped modifier class, you can add color to every other row within the section. This will give it a “zebra-striping” effect.To create this table, simply add “table-striped" after the .table class.See the Pen Bootstrap table - 5 by HubSpot (@hubspot) on CodePen.Bootstrap Table with Hoverable RowsNow let’s say you’d like the style of the rows to change only when a visitor hovers over them. Using the .table-hover modifier class, you can enable a hover state on table rows within a section.To create this table, add table-hover after the .table class.See the Pen Bootstrap table - 5 by HubSpot (@hubspot) on CodePen.Bootstrap Table with Colored RowsWith Bootstrap, you can also change the color of rows or cells using contextual classes. You can apply the following classes to elements (rows) or elements (individual cells):table-primarytable-secondarytable-successtable-dangertable-warningtable-infotable-lighttable-darkI can apply any of the above classes to different rows to make my table look something like this:See the Pen Bootstrap table - 6 by HubSpot (@hubspot) on CodePen.Bordered Bootstrap TableIf you’d like to have borders on all sides of the table rather than just the horizontal dividers, then you can use the .table-bordered modifier class. Add this class after the .table class.See the Pen Bootstrap table - 7 by HubSpot (@hubspot) on CodePen.If you’d like to remove all borders, then you can use the .table-borderless modifier class.Adding Bootstrap Tables to Your SiteTables can help organize large amounts of data on your site in a way that’s easy to read and digest for your visitors. Any of the table examples described above can be added and customized to your unique Bootstrap site. You’ll just need some familiarity
2025-04-06Holiday Bed • Holiday Couch • Holiday End Table • Holiday String Lights • Holiday String Lights Fence • Holiday Table • Holiday Throne • Holiday Tree • Holiday Wardrobe • Holiday Wreath • Hourglass Paper Lantern • Lantern Festival Selling Portal • Long Bells • Ornament Streamers • Paper Lantern Strand • Poisoned Apples • Polka Dot Stocking • Potion Jar • Red Green Stocking • Red Stocking • Rooster Lantern • Silly Chicken Lantern • Small Vial • Snowflake Rug • Snowy Stocking • Stack of Presents • Stone Mortar and Pestle • Striped Blue Stocking • Striped Red Stocking • Striped Yellow Stocking • Surfboard Display • Tapered Paper Lantern • Thin Bell • Voodoo Doll • Wall Mounted Surfboard • Witch Bed • Witch Chair • Witch Couch • Witch End Table • Witch Lamp • Witch Rug • Witch Table • Witch Wardrobe • Year of the Dog Plush • Year of the Dragon Plush • Year of the Horse Plush • Year of the Monkey Plush • Year of the Ox Plush • Year of the Pig Plush • Year of the Rabbit Plush • Year of the Ram Plush • Year of the Rat Plush • Year of the Rooster Plush • Year of the Snake Plush • Year of the Tiger Plush • Yule LogsVasesBlue Elven Vase • Clay Pot • Earthy Elven Vase • Gold Snake Vase • Green Elven Vase • Red Elven Vase • Red Rose Vase • Violet
2025-04-05Rotating parity N (left-to-right) with data restart. raid6_nc RAID6 N continue. Rotating parity N (left-to-right) with data continuation. raid10 Striped mirrors. This is the default value for the --type argument of the lvcreate command if you specify the -m argument along with the number of stripes that is greater than 1. Striping of mirror sets. raid0/raid0_meta Striping. RAID0 spreads logical volume data across multiple data subvolumes in units of stripe size. This is used to increase performance. Logical volume data is lost if any of the data subvolumes fail. 9.3. Parameters for creating a RAID0 You can create a RAID0 striped logical volume using the lvcreate --type raid0[meta] --stripes _Stripes --stripesize StripeSize VolumeGroup [PhysicalVolumePath] command. The following table describes different parameters, which you can use while creating a RAID0 striped logical volume. Table 9.2. Parameters for creating a RAID0 striped logical volumeParameterDescription --type raid0[_meta] Specifying raid0 creates a RAID0 volume without metadata volumes. Specifying raid0_meta creates a RAID0 volume with metadata volumes. Since RAID0 is non-resilient, it does not store any mirrored data blocks as RAID1/10 or calculate and store any parity blocks as RAID4/5/6 do. Hence, it does not need metadata volumes to keep state about resynchronization progress of mirrored or parity blocks. Metadata volumes become mandatory on a conversion from RAID0 to RAID4/5/6/10. Specifying raid0_meta preallocates those metadata volumes to prevent a respective allocation failure. --stripes Stripes Specifies the number of devices to spread the logical volume across. --stripesize StripeSize Specifies the size of each stripe in kilobytes.
2025-04-21