mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-29 23:11:08 -05:00
bootstrap: error messages, little css tuning
This commit is contained in:
parent
d3d0e320b7
commit
028c1b227f
@ -80,3 +80,28 @@ table.table thead .sorting_desc_disabled { background: url('../images/sort_desc_
|
|||||||
background: #fdd;
|
background: #fdd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Messages
|
||||||
|
-------------------------------------------------- */
|
||||||
|
.message {
|
||||||
|
width: 100%;
|
||||||
|
font-size: 85%;
|
||||||
|
margin-top: 15px;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message.success {
|
||||||
|
background-color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message.status {
|
||||||
|
background: #DB9330;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message.error {
|
||||||
|
background: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.message .container {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -57,19 +57,17 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="span8">
|
<div class="span8">
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<label class="control-label" for="snipurl"><?php echo lang('paste_shorturl'); ?></label>
|
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<?php
|
<?php
|
||||||
$set = array('name' => 'snipurl', 'id' => 'snipurl', 'value' => '1', 'tabindex' => '5', 'checked' => $snipurl_set);
|
$set = array('name' => 'snipurl', 'id' => 'snipurl', 'value' => '1', 'tabindex' => '5', 'checked' => $snipurl_set);
|
||||||
echo form_checkbox($set);
|
echo form_checkbox($set);
|
||||||
?>
|
?>
|
||||||
<?php echo lang('paste_shorturl_desc'); ?>
|
<?php echo lang('paste_shorturl') . ' - ' . lang('paste_shorturl_desc'); ?>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group">
|
<div class="control-group">
|
||||||
<label class="control-label" for="private"><?php echo lang('paste_private'); ?></label>
|
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<label class="checkbox">
|
<label class="checkbox">
|
||||||
<?php
|
<?php
|
||||||
@ -80,7 +78,7 @@
|
|||||||
}
|
}
|
||||||
echo form_checkbox($set);
|
echo form_checkbox($set);
|
||||||
?>
|
?>
|
||||||
<?php echo lang('paste_private_desc'); ?>
|
<?php echo lang('paste_private') . ' - ' . lang('paste_private_desc'); ?>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -113,7 +111,7 @@
|
|||||||
<div class="item_group">
|
<div class="item_group">
|
||||||
<div class="item item_captcha">
|
<div class="item item_captcha">
|
||||||
<label for="captcha"><?php echo lang('paste_spam'); ?>
|
<label for="captcha"><?php echo lang('paste_spam'); ?>
|
||||||
<span class="instruction"><?php echo lang('paste_spam_desc'); ?></span>
|
<span class="instruction">- <?php echo lang('paste_spam_desc'); ?></span>
|
||||||
</label>
|
</label>
|
||||||
<img class="captcha" src="<?php echo site_url('view/captcha'); ?>?<?php echo date('U', mktime()); ?>" alt="captcha" width="110" height="40" />
|
<img class="captcha" src="<?php echo site_url('view/captcha'); ?>?<?php echo date('U', mktime()); ?>" alt="captcha" width="110" height="40" />
|
||||||
<input value="<?php if(isset($captcha_set)){ echo $captcha_set; }?>" type="text" id="captcha" name="captcha" tabindex="2" maxlength="32" />
|
<input value="<?php if(isset($captcha_set)){ echo $captcha_set; }?>" type="text" id="captcha" name="captcha" tabindex="2" maxlength="32" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user