designing an enterprise css framework is hard, stephanie rewis

56
Designing an Enterprise CSS Framework is hard Stephanie Rewis Salesforce UX

Upload: future-insights

Post on 13-Apr-2017

1.561 views

Category:

Design


1 download

TRANSCRIPT

Page 1: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Designing an Enterprise CSS Framework is hard

Stephanie RewisSalesforce UX

Page 2: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Stephanie Rewis@stefsullLead Developer, Design Systems, Salesforce UX

Page 3: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Safe HarborSafe harbor statement under the Private Securities Litigation Reform Act of 1995:

This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services.

The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site.

Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Page 4: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Salesforce1

Page 5: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Page 8: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Page 9: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

We'd like our prototypers to iterate more rapidly.

Page 10: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

We learned our style guide was too static.

Page 12: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Lightning Experience

Page 14: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Objects/Components

Lightweight

Modular

Reusable

Utilities

Non-semantic

Single Purpose

Dependencies

Tokens

Page 15: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Objects/Components

Lightweight

Modular

ReusableDependencies

Tokens

Mixins

Functions

Page 16: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

clarity

Eliminate ambiguity. Enable people to see, understand, and act with confidence.

Page 17: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Clarity and understandability in class names

Page 18: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

BEM Naming

BlockElementModifier

Page 19: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Let's build a house!.house { block or component name }.house__door { element or component part }.house--red { modifier or component variation }.house__door--white { variation of a component part }

Page 20: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

We love documentation!

Page 21: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Page 22: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Page 23: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

efficiency

Streamline and optimize workflows. Intelligently anticipate needs to help people work better, smarter, and faster.

Page 24: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Design audit and inventory of all components in designer's comps

Page 25: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

We broke the components down to their smallest patterns and objects.

Page 26: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Page 27: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Page 28: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Enterprise applicationshave some unique traits.

Page 29: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Enterprise applications demand content and data-rich interfaces.They lack vertical rhythm.

Page 30: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Heading levels may vary and our components should be agnostic.

Page 31: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Lists are used for their semantics.

Page 33: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Page 34: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Page 35: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Accessibility for all people and devices is very important.

Page 36: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

We baked accessibility in:

Semantics matter ARIA roles REM unit sizing We’ve documented what needs to happen when JS is added

Page 37: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

consistency

Create familiarity and strengthen intuition by applying the same solution to the same problem.

Page 39: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Types of Design Tokens

• Fonts• Font Sizes• Font Weights• Line Heights• Background Colors• Text Colors

• Border Colors

• Shadows

• Spacing

• Sizing

• Animation Durations

• Media Queries

• Z-indexes

Page 40: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Page 42: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis
Page 43: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

We play well with others.

.button

.slds-button

Page 44: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

What is scoping anyway?

<div class="slds"><!-- Your components here -->

</div>

Page 45: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

How does scoping help?

<div class="slds"><!-- Your components here -->

</div>

ul li { margin-left: 20px; }.slds li { margin-left: 0; }

Page 46: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

beauty

Demonstrate respect for people’s time and attention through thoughtful and elegant craftsmanship.

Page 47: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

SVG icons for beauty at every size

Page 48: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Components should render beautifully at any width.

Page 51: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

"I’ve been working on a mobile app that has a Salesforce1 look and feel for the past several weeks. I've been struggling to get the styling just right so I decided to scratch it and try out the framework.

I started this at 11am this morning and by the end of the day, I almost have a complete application that took me previously over 2 weeks to complete."

- Matt M. Sr. Software Engineer

Page 52: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Resources

Page 54: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Flexbox ResourcesA Complete Guide to Flexbox — CSS Trickshttps://css-tricks.com/snippets/css/a-guide-to-flexbox

Known Bugs and Workarounds for Flexbox — Phil Waltonhttps://github.com/philipwalton/flexbugs

Page 56: Designing an Enterprise CSS Framework is Hard, Stephanie Rewis

Thank you