Commit c41d8146 by Brian Talbot Committed by thedeadparrot

LMS: simplifying language settings modal controls UI

parent d867e87b
...@@ -239,29 +239,6 @@ ...@@ -239,29 +239,6 @@
// ==================== // ====================
%btn-reset {
background: none;
border: none;
font-size: inherit;
box-shadow: none;
text-shadow: none;
}
// button that appears visually as a link
%btn-link {
@extend %btn-reset;
color: $link-color;
text-decoration: none;
@include transition(all 0.1s linear 0s);
&:hover, &:focus {
color: $link-color;
text-decoration: underline;
}
}
// ====================
// application: canned actions // application: canned actions
.btn { .btn {
font-family: $f-sans-serif; font-family: $f-sans-serif;
......
...@@ -342,25 +342,5 @@ ...@@ -342,25 +342,5 @@
.list-input { .list-input {
margin-bottom: $baseline; margin-bottom: $baseline;
} }
.list-actions {
.action-item {
@extend %wipe-last-child;
display: inline-block;
vertical-align: middle;
margin-right: ($baseline/4);
}
.action-submit {
color: $white;
padding-top: ($baseline/3);
padding-bottom: ($baseline/3);
}
.action-cancel {
@extend %btn-link;
}
}
} }
...@@ -35,14 +35,9 @@ ...@@ -35,14 +35,9 @@
</li> </li>
</ol> </ol>
<ul class="list-actions"> <div class="submit">
<li class="action-item"> <input type="submit" id="submit-lang" value="${_('Save Language Settings')}" />
<button type="submit" class="action action-submit" id="submit-lang">Save Language</button> </div>
</li>
<li class="action-item">
<button type="reset" class="action action-cancel">Cancel</button>
</li>
</ul>
</form> </form>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment