re-experience sharepoint - ripping apart the interface on sharepoint 2010

133
Re-Experience SharePoint Re-Experience SharePoint Interface Enhancements in SharePoint 2010

Upload: endusersharepoint

Post on 06-Jul-2015

2.566 views

Category:

Technology


0 download

DESCRIPTION

How do you get started with branding SharePoint? In this very high level presentation, Mark Miller of NothingButBranding.com walks through the default interface for a SharePoint 2010 team site and shows how you might quickly enhance the interface. The presentation is an extension of the NothingButrBranding Color Enhancement themes that are available for free download.

TRANSCRIPT

Page 1: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Re-Experience SharePoint

Interface Enhancements in

SharePoint 2010

Page 2: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Mark Miller, @eusp

Founder and Editor, EndUserSharePointCo-Founder, NothingButSharePoint

Page 3: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 4: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

NothingButSharePoint

Page 5: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

My SharePoint Destinations

International

Montreal

Ottawa

Toronto

Birmingham, UK

London

Nottingham, UK

Dubai

Sydney

Canberra, AU

Wellington, NZ

Philippines

Beijing

Shanghai

Switzerland

France

Uruguay

Argentian

Chile

Antarctica

United States

Virginia

Michigan

Florida

Denver

New York City

San Francisco

Los Angeles

Washington DC

Baltimore

Philidelphia

Boston

Page 6: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

NothingButBranding

Page 7: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

NothingButBranding

Page 8: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

#SPTechConTwitter Hash

Page 9: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Agenda

Re-Experience SharePoint

Page 10: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Explore SharePoint 2010 Interface

Page 11: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Examine Basic CSS Classes

Page 12: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Re-Experience SharePoint

Page 13: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 14: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

SharePoint 2010 Interface Overview

Default Interface, CSS Refresher

Page 15: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Default Interface

Page 16: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Areas for Enhancement

Page 17: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Enhanced Interface

Page 18: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

CSS

Basic Review for Beginners

Page 19: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Basic CSS Changes

Page 20: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Font

Page 21: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Borders

Page 22: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Fill

Page 23: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

How To Find CSS Classes

Page 24: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Browser Tools

Page 25: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

SharePoint Experience

Page 26: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Home Page CSS Reference

Page 27: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

What the CSS Looks Like

Page 28: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Font: Default Interface

body {

font-family: Verdana,Arial,sans-serif;

font-size: 8pt;

color: #676767;

background-color: white;

margin: 0px;

padding: 0px;

}

Page 29: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Borders: Default Interface

body #s4-leftpanel-content {

padding: 0px 0px 5px;

background-color: #FCFCFC;

border: 1px solid #DBDDDE;

border-top-width: 0px;

border-right-width: 1px;

border-bottom-width: 1px;

border-left-width: 0px;

}

Page 30: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Fill: Default Interface

body #s4-leftpanel-content {

padding: 0px 0px 5px;

background-color: #FCFCFC;

border: 1px solid #DBDDDE;

border-top-width: 0px;

border-right-width: 1px;

border-bottom-width: 1px;

border-left-width: 0px;

}

Page 31: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 32: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

The Header

Create a New Experience

Page 33: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Header Overview

Site Actions, Site Title, Global Nav

Page 34: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Interface: Default

Page 35: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Header: Default

Page 36: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Header: Enhanced

Page 37: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Site Actions: Default CSS

Page 38: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Site Actions Font: Default

/* Entire page font inherited from body

font-family: Verdana,Arial,sans-serif;

font-size: 8pt;

color: #676767;

background-color: white;

margin: 0px;

padding: 0px;

Page 39: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Site Actions Border: Default

body #s4-ribbonrow{

min-height:43px; /*

[ReplaceColor(themeColor:"Dark2",themeShad

e:"0.9")] */ background-color:#21374c; overflow-

y:hidden;

/* border: 1px solid red;

}

Page 40: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Site Actions Fill: Default

body #s4-ribbonrow{

min-height:43px;

/* [ReplaceColor(themeColor:"Dark2",

themeShade:"0.9")]

*/ background-color:#21374c; overflow-

y:hidden;

}

Page 41: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Site Actions: Enhanced CSS

Page 42: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Site Actions Font: Enhanced

/* Site action button */

.ms-siteactionsmenuhover {

border-color:#FFFFFF;

background:none;

background-color:transparent;

font-size: 25px !important;

}

Page 43: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Site Actions Borders: Enhanced

/* Site action button */

.ms-siteactionsmenuhover {

border-color:#FFFFFF;

background:none;

background-color:transparent;

font-size: 25px !important;

}

Page 44: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Site Actions Fill: Enhanced

/* Site action button */

.ms-siteactionsmenuhover {

border-color:#FFFFFF;

background:none;

background-color:transparent;

font-size: 25px !important;

}

Page 45: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Title Area: Default CSS

Page 46: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Title Area Font: Default

body #s4-topheader2{

background:url("/_layouts/images/selbg.png") repeat-x

left top;

background-color:#f6f6f6;

vertical-align:middle;

min-height:25px;

border-top:1px solid #e0e0e0;

border-bottom:1px solid #b8babd;

}

Page 47: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Title Area Borders: Default

body #s4-topheader2{

background:url("/_layouts/images/selbg.png") repeat-x

left top;

background-color:#f6f6f6;

vertical-align:middle;

min-height:25px;

border-top:1px solid #e0e0e0;

border-bottom:1px solid #b8babd;

}

Page 48: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Title Area Fill: Default

body #s4-topheader2{

background:url("/_layouts/images/selbg.png") repeat-x

left top;

background-color:#f6f6f6;

vertical-align:middle;

min-height:25px;

border-top:1px solid #e0e0e0;

border-bottom:1px solid #b8babd;

}

Page 49: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Title Area: Enhanced CSS

Page 50: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Title Area Font: Enhanced

.s4-breadcrumb-anchor:hover, .s4-breadcrumb-anchor-

open, .ms-qatbutton:hover {

border-color:#FFFFFF;

background:none;

background-color:transparent;

font-size: 25px;

}

Page 51: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Title Area Borders: Enhanced

background:url("/_layouts/images/selbg.png") repeat-x left

top;

background-color:#f6f6f6;

vertical-align:middle;

min-height:25px;

/* border-top:1px solid #e0e0e0; - HIDDEN

/* border-bottom:1px solid #b8babd; - HIDDEN

Page 52: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Title Area Fill: Enhanced

background:url("/_layouts/images/selbg.png") repeat-x left

top;

background-color:#f6f6f6;

vertical-align:middle;

min-height:25px;

/* border-top:1px solid #e0e0e0; - HIDDEN

/* border-bottom:1px solid #b8babd; - HIDDEN

Page 53: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Global Navigation: Default CSS

Page 54: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Global Nav Font: Default

body #s4-topheader2{

/* [RecolorImage(themeColor:"Light1")] */

background:url("/_layouts/images/selbg.png") repeat-x left top;

/* [ReplaceColor(themeColor:"Light2")] */

background-color:#f6f6f6;

vertical-align:middle;

min-height:25px;

/* [ReplaceColor(themeColor:"Light2-Lightest")] */

border-top:1px solid #e0e0e0;

/* [ReplaceColor(themeColor:"Light2-Lighter")] */

border-bottom:1px solid #b8babd;

}

Page 55: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Global Nav Borders: Default

body #s4-topheader2{

/* [RecolorImage(themeColor:"Light1")] */

background:url("/_layouts/images/selbg.png") repeat-x left top;

/* [ReplaceColor(themeColor:"Light2")] */

background-color:#f6f6f6;

vertical-align:middle;

min-height:25px;

/* [ReplaceColor(themeColor:"Light2-Lightest")] */

border-top:1px solid #e0e0e0;

/* [ReplaceColor(themeColor:"Light2-Lighter")] */

border-bottom:1px solid #b8babd;

}

Page 56: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Global Nav Fill: Default

body #s4-topheader2{

/* [RecolorImage(themeColor:"Light1")] */

background:url("/_layouts/images/selbg.png") repeat-x left top;

/* [ReplaceColor(themeColor:"Light2")] */

background-color:#f6f6f6;

vertical-align:middle;

min-height:25px;

/* [ReplaceColor(themeColor:"Light2-Lightest")] */

border-top:1px solid #e0e0e0;

/* [ReplaceColor(themeColor:"Light2-Lighter")] */

border-bottom:1px solid #b8babd;

}

Page 57: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Global Nav: Enhanced CSS

Page 58: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Global Nav Font: Enhanced

.s4-toplinks .s4-tn a {

background:none;

border:0px;

color:#cccccc;

font-family:'Verdana';

font-size:14px;

padding:0px;

margin:0px;

height:50px;

text-decoration:none !important;

}

Page 59: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Global Nav Borders: Enhanced

body #s4-topheader2 {

margin-top:20px;

margin-bottom:20px;

height:50px;

background-

image:url("/Style%20Library/Images/bg_globalnav.png");

border-top:none;

border-bottom:none;

}

Page 60: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Global Nav Fill: Enhanced

body #s4-topheader2 {

margin-top:20px; /* Add padding on top of the global nav container */

margin-bottom:20px; /* Add padding on bottom of the global nav

container */

height:50px; /* Set the height of the global nav container */

background-image:url("/Style%20Library/Images/bg_globalnav.png");

/* Change background image to the global nav container */

border-top:none;

border-bottom:none;

}

Page 61: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Re-Experience the Header

Page 62: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Midnight Black

Page 63: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Burgundy Wine

Page 64: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Smooth Slate

Page 65: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Indian Turquoise

Page 66: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Deep Ocean Aqua

Page 67: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 68: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

The Quick Launch

Create a New Experience

Page 69: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Quick Launch: Default CSS

Page 70: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Quick Launch Font: Default

.s4-ql,.s4-specialNavLinkList{

list-style-type:none;

margin:0px 0px 20px 0px;

padding:0px;

}

Page 71: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Quick Launch Border: Default

.s4-ql,.s4-specialNavLinkList{

list-style-type:none;

margin:0px 0px 20px 0px;

padding:0px;

}

Page 72: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Quick Launch Fill: Default

.s4-ql,.s4-specialNavLinkList{

list-style-type:none;

margin:0px 0px 20px 0px;

padding:0px;

/* No fill

}

Page 73: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Quick Launch : Enhanced CSS

Page 74: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Quick Launch Font: Enhanced

body #s4-leftpanel-content {

border:none; /* Remove the QL borders */

background-color:transparent;

/* Inherits body font

}

Page 75: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Quick Launch Borders: Enhanced

body #s4-leftpanel-content {

border:none; /* Remove the QL borders */

background-color:transparent;

}

Page 76: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Quick Launch Fill: Enhanced

body #s4-leftpanel-content {

border:none; /* Remove the QL borders */

background-color:transparent;

}

Page 77: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Main Links: Default CSS

Page 78: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Main Links Font: Default

.s4-tn li.static > .menu-item{

/* [ReplaceColor(themeColor:"Dark2")]

*/ color:#3b4f65; white-space:nowrap;

border:1px solid transparent;

padding:4px 10px;

display:inline-block;

height:15px;

vertical-align:middle;

/* Inherits from body

}

Page 79: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Main Links Borders: Default

.s4-tn li.static > .menu-item{

/* [ReplaceColor(themeColor:"Dark2")]

*/ color:#3b4f65; white-space:nowrap;

border:1px solid transparent;

padding:4px 10px;

display:inline-block;

height:15px;

vertical-align:middle;

}

Page 80: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Main Links Fill: Default

.s4-tn li.static > .menu-item{

/* [ReplaceColor(themeColor:"Dark2")]

*/ color:#3b4f65; white-space:nowrap;

border:1px solid transparent;

padding:4px 10px;

display:inline-block;

height:15px;

vertical-align:middle;

/* No fill

}

Page 81: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Main Links: Enhanced CSS

Page 82: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Main Links Font: Enhanced

.menu-vertical > ul.root > li.static > .menu-item {

color:#000000;

font-size:14px;

font-family:'Verdana';

border-bottom:1px solid #000000;

padding-bottom:5px;

}

Page 83: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Main Links Borders: Enhanced

.menu-vertical > ul.root > li.static > .menu-item {

color:#000000;

font-size:14px;

font-family:'Verdana';

border-bottom:1px solid #000000;

padding-bottom:5px;

}

Page 84: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Main Links Fill: Enhanced

.menu-vertical > ul.root > li.static > .menu-item {

color:#000000;

font-size:14px;

font-family:'Verdana';

border-bottom:1px solid #000000;

padding-bottom:5px;

/* NO FILL

}

Page 85: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Sub Links: CSS

Page 86: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Sub Links Font: Default

.single-level-menu .menu-vertical li.static{

border-bottom: 1px solid #ffffff;

/* Fonts inherited from body

}

Page 87: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Sub Links Borders: Default

.single-level-menu .menu-vertical li.static{

border-bottom: 1px solid #ffffff;

}

Page 88: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Sub Links Fill: Default

.single-level-menu .menu-vertical li.static{

border-bottom: 1px solid #ffffff;

/* No fill in default

}

Page 89: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Sub Links: Enhanced CSS

Page 90: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Sub Links Font: Enhanced

.menu-vertical > ul.root > li.static > ul.static > li.static {

padding-left:10px;

}

.menu-vertical > ul.root > li.static > ul.static > li.static:hover {

background-color:#cccccc;

}

.menu-vertical > ul.root > li.static > ul.static > li.static > a {

color:#000000;

font-size:14px;

font-family:'Verdana';

text-decoration:none;

}

.s4-ql a.selected {

background:none;

background-color:transparent;

border:0px solid transparent !important;

}

Page 91: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Sub Links Borders: Enhanced

.menu-vertical > ul.root > li.static > ul.static > li.static {

padding-left:10px;

}

.menu-vertical > ul.root > li.static > ul.static > li.static:hover {

background-color:#cccccc;

}

.menu-vertical > ul.root > li.static > ul.static > li.static > a {

color:#000000;

font-size:14px;

font-family:'Verdana';

text-decoration:none;

}

.s4-ql a.selected {

background:none;

background-color:transparent;

border:0px solid transparent !important;

}

Page 92: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

QL Sub Links Fill: Enhanced

.menu-vertical > ul.root > li.static > ul.static > li.static {

padding-left:10px;

}

.menu-vertical > ul.root > li.static > ul.static > li.static:hover {

background-color:#cccccc;

}

.menu-vertical > ul.root > li.static > ul.static > li.static > a {

color:#000000;

font-size:14px;

font-family:'Verdana';

text-decoration:none;

}

.s4-ql a.selected {

background:none;

background-color:transparent;

border:0px solid transparent !important;

}

Page 93: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Re-Experience the Quick Launch

Page 94: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Midnight Black

Page 95: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Burgundy Wine

Page 96: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Smooth Slate

Page 97: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Indian Turquoise

Page 98: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Deep Ocean Aqua

Page 99: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 100: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

The Content Area

Create a New Experience

Page 101: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Content Area: Default CSS

Page 102: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Content Area Font: Default

.s4-ca{

/* [ReplaceColor(themeColor:"Light1")]

*/ background:#fff;

margin-left:155px;

margin-right:0px;

min-height:324px;

/* Inherited from body

}

Page 103: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Content Area Borders: Default

.s4-ca{

/* [ReplaceColor(themeColor:"Light1")]

*/ background:#fff;

margin-left:155px;

margin-right:0px;

min-height:324px;

/* No borders

}

Page 104: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Content Area Fill: Default

.s4-ca{

/* [ReplaceColor(themeColor:"Light1")]

*/ background:#fff;

margin-left:155px;

margin-right:0px;

min-height:324px;

}

Page 105: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Content Area: Enhanced CSS

Page 106: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Content Area Font: Enhanced

/* Default used

.s4-ca{

/* [ReplaceColor(themeColor:"Light1")]

*/ background:#fff;

margin-left:155px;

margin-right:0px;

min-height:324px;

}

Page 107: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Content Area Borders: Enhanced

/* Default used

.s4-ca{

/* [ReplaceColor(themeColor:"Light1")]

*/ background:#fff;

margin-left:155px;

margin-right:0px;

min-height:324px;

}

Page 108: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Content Area Fill: Enhanced

/* Default used

.s4-ca{

/* [ReplaceColor(themeColor:"Light1")]

*/ background:#fff;

margin-left:155px;

margin-right:0px;

min-height:324px;

}

Page 109: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Re-Experience the Content Area

Page 110: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Midnight Black: Content

Page 111: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Burgundy Wine: Content

Page 112: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Smooth Slate: Content

Page 113: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Indian Turquoise: Content

Page 114: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Deep Ocean Aqua: Content

Page 115: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 116: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Re-Experience SharePoint

Putting it all together

Page 117: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Default SharePoint 2010 Interface

Page 118: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 119: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Enhanced SharePoint 2010

Page 120: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 121: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 122: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 123: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 124: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 125: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Premium Experiences

Page 126: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 127: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 128: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 129: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 130: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Page 131: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Conclusion:

7000+ Lines of CSS in

SharePoint

Page 132: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Download

NBB Community Color Templates

Page 133: Re-Experience SharePoint - Ripping Apart the Interface on SharePoint 2010

Re-Experience SharePoint

Re-Experience SharePoint

Interface Enhancements in

SharePoint 2010