小编Tig*_*tic的帖子

如何解决git merge错误"​​交换文件.MERGE_MSG.swp已经存在"

当我拉:

E325: ATTENTION
Found a swap file by the name "~/Documents/Sites/recipegenerator/.git/.MERGE_MSG.swp"
          owned by: username   dated: Wed Dec 14 12:28:45 2016
         file name: ~username/Documents/Sites/recipegenerator/.git/MERGE_MSG
          modified: YES
         user name: username   host name: Users-MacBook-Pro.local
        process ID: 33747
While opening file "/Users/larsvanurk/Documents/Sites/recipegenerator/.git/MERGE_MSG"
             dated: Thu Dec 22 14:06:17 2016
      NEWER than swap file!

(1) Another program may be editing the same file.
    If this is the case, be careful not to end up with two
    different instances of the same file when making changes.
    Quit, …
Run Code Online (Sandbox Code Playgroud)

git github github-for-mac

24
推荐指数
2
解决办法
3万
查看次数

单击标签不会检查我的输入字段

我正在使用以下代码.复选框不希望用我给它的样式进行检查.

 <div class="form-group">
    <div class="col-md-6 col-md-offset-4">
       <div class="checkbox">
          <input name="remember" type="checkbox" ><label>Wachtwoord onthouden</label>
       </div>
    </div>
 </div>'
Run Code Online (Sandbox Code Playgroud)

和css:

col-md-4.control-label, #email, #password {
    margin: 20px auto;
    width: 300px;
    resize: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 1em;
    outline: none;

}

.btn.btn-link, .checkbox {
    display: block;
    margin-top:20px;
    margin-bottom:20px;
    color: $white;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before { …
Run Code Online (Sandbox Code Playgroud)

html css checkbox

0
推荐指数
1
解决办法
721
查看次数

标签 统计

checkbox ×1

css ×1

git ×1

github ×1

github-for-mac ×1

html ×1