Changing the look of the "Turn editing on" button

Changing the look of the "Turn editing on" button

by Mark Little -
Number of replies: 3
I'm trying to change the look of the "Turn editing on" button

Which line is it in the styles.php?
Average of ratings: -
In reply to Mark Little

Re: Changing the look of the "Turn editing on" button

by Stuart Young -
That button is just a normal HTML form submit button.

You can't change only it (in styles.php that is) without changing all the form submit buttons, which maybe you want to do.

If so, simply add CSS styling to the input HTML tag, eg.

input {
color: #090;
background-color: #eee;
border: 1px solid #090;
}

sorry, too tired to find URLs on CSS styling of HTML forms

to developers - maybe every submit button should have an (unique) ID so that they can be styled individually?

cheers
Stuey
In reply to Stuart Young

Re: Changing the look of the "Turn editing on" button

by Martin Dougiamas -
Picture of Core developers Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Plugin developers Picture of Testers
Pretty much every one is now identifiable via selectors now.