HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/Velosophe/carparkcannonball.cc/wwwroot/source/styles/debug/_debug.forms.scss
/*----------------------------------------------------------------------------*\
    #DEBUG FORMS
\*----------------------------------------------------------------------------*/

/**
 * Various form-field types have required attributes. `input`s need `type`
 * attributes, `textarea`s need `rows` and `cols` attributes and submit buttons
 * need a `value` attribute.
 */

input {
    @include debug-text('no type attribute');
    outline: 5px solid red;
}

textarea {
    @include debug-text('no rows / cols');
    outline: 5px solid red;
}

input[type] {
    @include no-debug-text();
    outline: none;
}

textarea[rows][cols] {
    @include no-debug-text();
    outline: none;
}

input[type=submit] {
    @include debug-text('no type submit');
    outline: 5px solid red;
}

input[type=submit][value] {
    @include no-debug-text();
    outline: none;
}