stu-cmd.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. @import "./_stu-body";
  2. @import "./_stu-box";
  3. @import "./_stu-form";
  4. .box {
  5. .body {
  6. padding: 10px;
  7. background: #d8e7f9;
  8. background: linear-gradient(174.54deg, rgba(204, 224, 248, 0.76) 0.23%, rgba(242, 249, 255, 0.76) 120.71%);
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. .role-box {
  13. display: flex;
  14. & > div {
  15. width: 100%;
  16. padding: 0;
  17. }
  18. /* .form-control, .select2-selection--single {
  19. border: none;
  20. }*/
  21. }
  22. .select-box, .input-box, .cmd-box {
  23. background: none;
  24. }
  25. .input-box {
  26. display: none;
  27. margin-left: 15px;
  28. }
  29. .cmd-box {
  30. position: relative;
  31. padding: 0;
  32. .txt {
  33. padding: 10px;
  34. }
  35. .btn {
  36. position: absolute;
  37. right: 15px;
  38. bottom: 15px;
  39. margin: 5px auto;
  40. width: 120px;
  41. }
  42. .help-box {
  43. position: absolute;
  44. left: 15px;
  45. bottom: 15px;
  46. width: 70%;
  47. }
  48. }
  49. }