| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .singlebutton div {
- display: inline-block;
- margin-left: 5px;
- margin-right: 5px;
- margin-bottom: 5px;
- }
- // Two singlebutton's side by side for ok/cancel.
- #notice .buttons .singlebutton {
- display: inline-block;
- }
- .continuebutton {
- text-align: center;
- }
- .btn-lineup {
- margin: 0 0 3px 5px;
- }
- input[name="searchwikicontent"] + input[type="submit"],
- select + input[type="submit"],
- input[type="text"] + input[type="button"],
- input[type="password"] + input[type="submit"],
- input[type="text"] + button,
- input[type="text"] + input[type="submit"] {
- .btn-lineup
- }
- p.arrow_button {
- margin-top: 5em;
- text-align: center;
- #remove {
- margin: 3em auto 5em;
- }
- input {
- .btn-block;
- }
- }
- #addcontrols {
- margin-top: 5em;
- text-align: center;
- margin-bottom: 3em;
- }
- #addcontrols input,
- #removecontrols input {
- .btn-block;
- }
- button,
- input.form-submit,
- input[type="button"],
- input[type="submit"],
- input[type="reset"]
- {
- .btn;
- .btn-default;
- .btn-lineup;
- }
- input.form-submit,
- input#id_submitbutton,
- input#id_submitbutton2,
- .path-admin .buttons input[type="submit"],
- td.submit input {
- .btn-primary
- }
- // override .btn-primary
- #notice .singlebutton + .singlebutton input,
- .submit.buttons input[name="cancel"] {
- .btn
- }
- #notice .singlebutton + .singlebutton input,
- .submit.buttons input[name="cancel"] {
- .btn-lineup
- }
- input[id$="_clearbutton"],
- input[type="reset"] {
- .btn-warning
- }
- button.yui3-button.closebutton,
- button.yui3-button.closebutton:hover {
- background-position: 0 0;
- // Because we assign button looks to every button tag above,
- // we need to remove some styles from non-standard looking
- // buttons. Correct fix, assign .btn class to every actual
- // button in Moodle so we don't need to carpet bomb the
- // bare button tag.
- }
- input.fp-btn-choose {
- .btn-sm;
- margin-left: 0;
- margin-top: 4px;
- }
- .user-enroller-panel .uep-search-results .user .options .enrol {
- .btn-xs
- }
|