Skip to content

Commit

Permalink
github #220 styling of descriptions
Browse files Browse the repository at this point in the history
Conflicts:
	scenarioo-client/app/styles/scenarioo.less
  • Loading branch information
forkch committed Jul 28, 2014
1 parent 09488c6 commit 6d1b770
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 8 deletions.
34 changes: 29 additions & 5 deletions scenarioo-client/app/styles/scenarioo.less
Expand Up @@ -201,6 +201,11 @@ h4 {
}
}

.sc-pageTitle {
border-bottom: 0px;
margin-top: 0.8em
}

.step-title {
margin: 0;
padding: 0;
Expand All @@ -212,10 +217,11 @@ h4 {
border-radius: 3px;
}

.meta-data .label {
padding-top: 6px;
font-size: 16px;
}
// TODO Why was this needed?
//.meta-data .label {
// padding-top: 6px;
// font-size: 16px;
//}

.meta-data div.row-fluid div {
line-height: 20px;
Expand Down Expand Up @@ -293,6 +299,10 @@ div.sc-screenshot-scenario {
margin-top: @vertical-space;
}

.sc-space-top-large {
margin-top: 40px;
}

.sc-space-bottom {
margin-bottom: @vertical-space;
}
Expand Down Expand Up @@ -341,7 +351,7 @@ label {

.sc-tree ul {
margin-left: 0;
padding-left: 0;
padding: 0;
padding-bottom: 2px;
}

Expand Down Expand Up @@ -381,4 +391,18 @@ label {
/** Build Import Status Dialog (wider) **/
.modal-wide .modal-dialog {
width: 75%;
}

/** Tree-Search View - reference Tree **/
.matchColor {
background-color: #E8E8E8;
}

.sc-referenceTree {
font-size: 1.2em;
font-weight: bold;
border-bottom: 2px #CCCCCC solid;
margin-top: 1em;
margin-bottom: 0.5em;
padding-bottom: 0.2em;
}
4 changes: 2 additions & 2 deletions scenarioo-client/app/views/scenario.html
Expand Up @@ -16,8 +16,8 @@
-->

<sc-breadcrumb></sc-breadcrumb>
<h4 class="sc-pageTitle">Usecase: {{useCaseDescription}}</h4>
<h4 class="sc-pageTitle">Scenario: {{scenario.description}}</h4>
<h3 class="sc-pageTitle">Use Case: {{useCaseDescription}}</h3>
<h2 class="sc-pageTitle">{{scenario.description}}</h2>
<div class="row sc-space-top sc-space-bottom">
<div class="col-lg-3">
<div class="input-group">
Expand Down
2 changes: 1 addition & 1 deletion scenarioo-client/app/views/usecase.html
Expand Up @@ -16,7 +16,7 @@
-->

<sc-breadcrumb></sc-breadcrumb>
<h1 class="sc-pageTitle">{{useCase.description}}</h1>
<h2 class="sc-pageTitle">{{useCase.description}}</h2>
<div class="row sc-space-top sc-space-bottom">
<div class="col-lg-3">
<div class="input-group">
Expand Down

0 comments on commit 6d1b770

Please sign in to comment.