CSS coding standards — CKAN 2.9.11 documentation (2024)

Note

For CKAN 2.0 we use LESS as a pre-processor for our core CSS. ViewFront-end Documentationfor more information on this subject.

Formatting

All CSS documents must use two spaces for indentation and files should haveno trailing whitespace. Other formatting rules:

  • Use soft-tabs with a two space indent.
  • Use double quotes.
  • Use shorthand notation where possible.
  • Put spaces after : in property declarations.
  • Put spaces before { in rule declarations.
  • Use hex color codes #000 unless using rgba().
  • Always provide fallback properties for older browsers.
  • Use one line per property declaration.
  • Always follow a rule with one line of whitespace.
  • Always quote url() and @import() contents.
  • Do not indent blocks.

For example:

.media { overflow: hidden; color: #fff; background-color: #000; /* Fallback value */ background-image: linear-gradient(black, grey);}.media .img { float: left; border: 1px solid #ccc;}.media .img img { display: block;}.media .content { background: #fff url("../images/media-background.png") no-repeat;}

Naming

All ids, classes and attributes must be lowercase with hyphens used forseparation.

/* GOOD */.dataset-list {}/* BAD */.datasetlist {}.datasetList {}.dataset_list {}

Comments

Comments should be used liberally to explain anything that may be unclear atfirst glance, especially IE workarounds or hacks.

.prose p { font-size: 1.1666em /* 14px / 12px */;}.ie7 .search-form { /* Force the item to have layout in IE7 by setting display to block. See: http://reference.sitepoint.com/css/haslayout */ display: inline-block;}

Modularity and specificity

Try keep all selectors loosely grouped into modules where possible and avoidhaving too many selectors in one declaration to make them easy to override.

/* Avoid */ul#dataset-list {}ul#dataset-list li {}ul#dataset-list li p a.download {}

Instead here we would create a dataset “module” and styling the item outside ofthe container allows you to use it on it’s own e.g. on a dataset page:

.dataset-list {}.dataset-list-item {}.dataset-list-item .download {}

In the same vein use classes make the styles more robust, especially where theHTML may change. For example when styling social links:

<ul class="social"> <li><a href="">Twitter</a></li> <li><a href="">Facebook</a></li> <li><a href="">LinkedIn</a></li></ul>

You may use pseudo selectors to keep the HTML clean:

.social li:nth-child(1) a { background-image: url(twitter.png);}.social li:nth-child(2) a { background-image: url(facebook.png);}.social li:nth-child(3) a { background-image: url(linked-in.png);}

However this will break any time the HTML changes for example if an item isadded or removed. Instead we can use class names to ensure the icons alwaysmatch the elements (Also you’d probably sprite the image :).

.social .twitter { background-image: url(twitter.png);}.social .facebook { background-image: url(facebook.png);}.social .linked-in { background-image: url(linked-in.png);}

Avoid using tag names in selectors as this prevents re-use in other contexts.

/* Cannot use this class on an <ol> or <div> element */ul.dataset-item {}

Also ids should not be used in selectors as it makes it far too difficult tooverride later in the cascade.

/* Cannot override this button style without including an id */.btn#download {}
CSS coding standards — CKAN 2.9.11 documentation (2024)
Top Articles
Life Insurance Council
Forex trading hours and when you should trade forex
Jail Inquiry | Polk County Sheriff's Office
Express Pay Cspire
Best Pizza Novato
Missed Connections Inland Empire
Truist Park Section 135
Stl Craiglist
How To Get Free Credits On Smartjailmail
Doby's Funeral Home Obituaries
You can put a price tag on the value of a personal finance education: $100,000
Catsweb Tx State
Premier Boating Center Conroe
Crusader Kings 3 Workshop
Cool Math Games Bucketball
OSRS Dryness Calculator - GEGCalculators
735 Reeds Avenue 737 & 739 Reeds Ave., Red Bluff, CA 96080 - MLS# 20240686 | CENTURY 21
Telegram Scat
Simpsons Tapped Out Road To Riches
Puretalkusa.com/Amac
Grayling Purnell Net Worth
bode - Bode frequency response of dynamic system
Why Does Lawrence Jones Have Ptsd
Evil Dead Rise Showtimes Near Regal Sawgrass & Imax
Putin advierte que si se permite a Ucrania usar misiles de largo alcance, los países de la OTAN estarán en guerra con Rusia - BBC News Mundo
Dtlr Duke St
How Long After Dayquil Can I Take Benadryl
A Cup of Cozy – Podcast
Student Portal Stvt
55Th And Kedzie Elite Staffing
Coindraw App
Free Tiktok Likes Compara Smm
Mark Ronchetti Daughters
Donald Trump Assassination Gold Coin JD Vance USA Flag President FIGHT CIA FBI • $11.73
Siskiyou Co Craigslist
Roch Hodech Nissan 2023
Lake Dunson Robertson Funeral Home Lagrange Georgia Obituary
Go Smiles Herndon Reviews
How To Paint Dinos In Ark
Blackstone Launchpad Ucf
Wasmo Link Telegram
Carroll White Remc Outage Map
Former Employees
How Much Is 10000 Nickels
Kb Home The Overlook At Medio Creek
2013 Honda Odyssey Serpentine Belt Diagram
Cleveland Save 25% - Lighthouse Immersive Studios | Buy Tickets
Streameast Io Soccer
Makemkv Key April 2023
Fallout 76 Fox Locations
Zom 100 Mbti
Best brow shaping and sculpting specialists near me in Toronto | Fresha
Latest Posts
Article information

Author: Dan Stracke

Last Updated:

Views: 6102

Rating: 4.2 / 5 (63 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Dan Stracke

Birthday: 1992-08-25

Address: 2253 Brown Springs, East Alla, OH 38634-0309

Phone: +398735162064

Job: Investor Government Associate

Hobby: Shopping, LARPing, Scrapbooking, Surfing, Slacklining, Dance, Glassblowing

Introduction: My name is Dan Stracke, I am a homely, gleaming, glamorous, inquisitive, homely, gorgeous, light person who loves writing and wants to share my knowledge and understanding with you.